You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StringJsonMessageConverter works well with Message<PO> as method parameter when using @KafkaListener, but doesn't work with List<Message<PO>> in batch listener mode. Already set factory.setMessageConverter(new BatchMessagingMessageConverter(jsonMessageConverter));.
It seems that the listener does not using StringJsonMessageConverter to convert each record when the message parameter isMessageList.
The text was updated successfully, but these errors were encountered:
StringJsonMessageConverter
works well withMessage<PO>
as method parameter when using@KafkaListener
, but doesn't work withList<Message<PO>>
in batch listener mode. Already setfactory.setMessageConverter(new BatchMessagingMessageConverter(jsonMessageConverter));
.It seems that the listener does not using
StringJsonMessageConverter
to convert each record when the message parameterisMessageList
.The text was updated successfully, but these errors were encountered: