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@EnableRabbitor<rabbit:annotation-driven />(see below for an example). RabbitMessagingTemplateallowing interaction withRabbitMQusingspring-messagingMessageobjects.- 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…