Spring AMQP (for Java) 1.4 Milestone 1 Available
We are pleased to announce that the first milestone of Spring AMQP 1.4 is now available.
##Key Features
- Annotation-based message listeners (
@RabbitListener
), enabled with either@EnableRabbit
or<rabbit:annotation-driven />
(see below for an example). RabbitMessagingTemplate
allowing interaction withRabbitMQ
usingspring-messaging
Message
objects.- A new factory bean to ease the configuration of SSL with the
RabbitConnectionFactory
- Log4j Appender now supports configuration of message persistence.
Here is a simple example for a POJO service using the new annotations:
public static class…