Failed to convert from JSON;Unexpected character ('f' (code 102)): Expected space separating root-level values at (String)“5f19a7e99933db43cb23e83d”
问题 @KafkaListener(id = ProductTopicConstants.GET_PRODUCT, topics = ProductTopicConstants.GET_PRODUCT) @SendTo public Product GetProduct(String id) { return _productRepository.findByid(id); } Kafka Configuration @Configuration public class KafkaConfiguration { @Bean public Map<String, Object> consumerConfigs() { Map<String, Object> props = new HashMap<>(); props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG,