Spring Integration 5.0 Milestone 7 and 4.3.12 Available
On behalf of the Spring Integration team I am pleased to announce that the Milestone 7 for the Spring Integration 5.0 version (5.0.0.M7
) is now available.
It is available for download from the Milestone Repository:
repositories {
maven { url 'http://repo.spring.io/libs-milestone' }
}
compile "org.springframework.integration:spring-integration-core:5.0.0.M7"
21 JIRAs (and some GitHub issues) made into this release, including bug fixes and a number of new features. Some highlights of features in the M7
, since the previously announced Milestone 6:
-
Reactive WebFlux Channel Adapters has been extracted to the separate
spring-integration-webflux
module to distinguish Servlet-based MVC configuration from the Reactive foundation. -
The
EmbeddedJsonHeadersMessageMapper
is introduced to allow embedding message headers together with the payload into packages for target protocols which doesn’t support headers natively, for example TCP/IP, MQTT, AWS Kinesis and Apache Kafka before version0.11.x
. -
The
java.util.function.Supplier
can now act as aMessageSource
: …