我正在使用SpringKafka2.1.7来使用json消息,我想处理无法正确反序列化的消息。
为了覆盖在同一消息上循环的默认行为,我扩展了jsondesializer以覆盖反序列化方法。
public class CustomKafkaJsonDeserializer<T> extends JsonDeserializer<T> {
public CustomKafkaJsonDeserializer(Class<T> targetType) {
super(targetType);
this.objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, true);
}
@Override
public T deserialize(String topic, byte[] data) {
try {
return super.deserialize(topic, data);
} catch (Exception e) {
log.error("Problem deserializing data " + new String(data) + " on topic " + topic, e.getMessage());
return null;
}
}
}
以下是我的使用者及其配置:
@Service
public class Consumer {
@KafkaListener(topics = "${kafka.topic.out}", containerFactory = "kafkaListenerContainerFactory", errorHandler = "customKafkaListenerErrorHandler")
public void consume(@Payload Lines lines, @Headers MessageHeaders messageHeaders) {
//treatment
}
}
@Configuration
public class ConsumerConfig {
...
@Bean
public ConsumerFactory<String, Lines> consumerFactory() {
return new DefaultKafkaConsumerFactory<>(consumerConfigs(), new StringDeserializer(), new CustomKafkaJsonDeserializer<>(Lines.class));
}
@Bean
public KafkaListenerContainerFactory<ConcurrentMessageListenerContainer<String, Lines>> kafkaListenerContainerFactory() {
ConcurrentKafkaListenerContainerFactory<String, Lines> factory = new ConcurrentKafkaListenerContainerFactory<>();
factory.setConsumerFactory(consumerFactory());
return factory;
}
private Map<String, Object> consumerConfigs() {
Map<String, Object> props = new HashMap<>();
props.put("bootstrap.servers", this.bootstrapServers);
props.put("group.id", this.appName);
props.put("key.deserializer", StringDeserializer.class);
props.put("value.deserializer", CustomKafkaJsonDeserializer.class);
props.put("security.protocol", this.securityProtocol);
props.put("sasl.mechanism", this.saslMechanism);
props.put("sasl.jaas.config", this.saslJaasConfig);
return props;
}
}
最后,我实现了自己的错误处理程序,以便将错误数据发送到其他主题。
@Component
public class CustomKafkaListenerErrorHandler implements KafkaListenerErrorHandler {
@Autowired
private KafkaErrorService kafkaErrorService;
@Override
public Object handleError(Message<?> message, ListenerExecutionFailedException exception) throws Exception {
log.error("error handler for message: {} [{}], exception: {}", message.getPayload(), message.getHeaders(), exception.getMessage());
kafkaErrorService.sendErrorToKafka(message.getPayload().toString(), exception.getMessage());
throw new RuntimeException(exception);
}
}
这就是当我使用错误消息时发生的情况:
customkafkajsondeserializer尝试反序列化消息并捕获异常。
有效负载可以在catch块中检索,但不能在头中检索。返回null以提前偏移。
它到达错误处理程序的handleerror方法。message.getheaders()返回正确的头,但message.getpayload()返回一个kafkanull对象。因此,我不能在这一步同时发送有效负载和报头。
关于如何做到这一点有什么建议吗?
1条答案
按热度按时间dldeef671#
返回一个包含数据和头的富对象,而不是返回null。