Spring Integration 4.0 Release Candidate Available
We are pleased to announce that the Spring Integration 4.0 release candidate (4.0.0.RC1) is now available. Please use the Milestone Repository with maven or gradle, download a distribution archive, or see the project home page for links to the updated documentation, and Maven/Gradle configuration details.
The release includes several bug fixes, some new features and further improvements with the GA release due near the end of April.
Here is a summary of major changes since the last milestone
@Poller and @InboundChannelAdapter
Building on the extensive improvements to annotation support announced in M4 Release,
the new @Poller
annotation has been added to each of the Messaging Annotations (@ServiceActivator
, @Router
etc.).
The @Poller
annotation attribute enables configuration of poller
options for the inputChannel
of the Messaging Annotation.
This allows annotated endpoints to be PollingConsumer
s. Previously, annotated endpoints could only use SubscribableChannel
…