Spring AMQP 1.6.0 Milestone 2 (and 1.5.5) Available
We are pleased to announce the second milestone of Spring AMQP 1.6 is available.
Additions since the first milestone include:
-
The caching connection factory now exposes cache statistics
-
@RabbitListener
methods now communicate type information to the message converter for inbound messages. This means, for example, theJackson2JsonMessageConverter
no longer needs a custom class mapper when a message without type information in the headers is received (e.g. from a sender that is not a Spring AMQP app). Instead, the@RabbitListener
method parameter type is used in the conversion. In addition, theMethod
andbean
are also made available via message properties to custom converters. …