Spring AMQP 1.6 RELEASE available

Releases | Artem Bilan | June 01, 2016 | ...

We are pleased to announce that the Spring AMQP 1.6 GA (1.6.0.RELEASE) is now available in the spring release repo, as well as in the Maven Central.

First of all, thanks to everyone who contributed to the project any way: JIRAs, GitHub issues, Pull Requests, blog posts & articles and even just with simple StackOverflow questions!

You can find the full feature pack in the previous Spring AMQP 1.6 RC1 blog post. You can refer to the what’s new in the reference documentation as well as the closed JIRA Issues for the entire 1.6 version.

Nevertheless we encountered with the couple last minute features which we would like to share here as well:

  • The User Id message property can now be populated in the RabbitTemplate via userIdExpression. Typically we can use username from the ConnectionFactory:
<rabbit:template id="rabbitTemplate"
                 connection-factory="connectionFactory"
                 user-id-expression="@connectionFactory.username" />
  • Another community contribution feature is Builder fluent API for Queue and Exchange definitions:
@Bean
public Queue fooQueue() {
    return QueueBuilder.nonDurable("foo")
                  .autoDelete()
                  .exclusive()
                  .withArgument("foo", "bar")
                  .build();
}
...
@Bean
public Exchange fooExchange() {
    return ExchangeBuilder.directExchange("foo")
                  .autoDelete()
                  .delayed()
                  .durable()
                  .internal()
                  .withArgument("foo", "bar")
                   .build();
}

This is the last 1.x line release, although any maintain 1.6.x releases are possible, but as just bug fixes and minor improvements. Next up (2017) is 2.0 which will may require Spring 5 and include some Reactive Streams effort and Java 8 code base.

As usual, we welcome any feedback, questions, or help, using the usual mechanisms:

Project Page | JIRA | Contribution | Help

Get the Spring newsletter

Thank you for your interest. Someone will get back to you shortly.

Get ahead

VMware offers training and certification to turbo-charge your progress.

Learn more

Get support

Tanzu Spring Runtime offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all