Spring AMQP 1.6.0 Release Candidate (and 1.5.6) Available
We are pleased to announce that the Spring AMQP 1.6 release candidate (1.6.0.RC1) is now available in the spring milestone repo.
The 1.5.6 maintenance release is also available with a few bug fixes.
Here is a summary of the 1.6.0 release contents, for more details, refer to the what's new in the reference documentation as well as the closed JIRA Issues for this release.
-
A new jar
spring-rabbit-test
containing a test harness to help with testing@RabbitListener
methods; see the testing chapter. -
Multiple
@RabbitListener
annotations on a method (when using Java 8) and the@RabbitListeners
annotation (for pre-Java 8), each allowing the same method to be the listener method for multiple listener containers. -
Full support for the Delayed Message Exchange RabbitMQ plugin.
-
An
AsyncRabbitTemplate
returningListenableFuture<?>
for request/reply messaging. -
An option to publish
ApplicationEvents
when listener containers go idle. -
The caching connection factory now exposes cache statistics
…