Spring Integration 5.3 Milestone 2 Available
On behalf of the Spring Integration team, I’m pleased to announce the second milestone for Spring Integration 5.3
.
This release ships several bug fixes, a bunch of new features and improvements and will be picked up by Spring Boot 2.3 M2
in the near future.
It can be downloaded from our milestone repository:
compile "org.springframework.integration:spring-integration-core:5.3.0.M2"
The most important new features are:
-
With the
IntegrationFlowExtension
implementation we now can right our own Java DSL for Spring Integration. It allows to introduce custom or composed EIP-operators. The existingIntegrationComponentSpec
implementations can now be extended for additional (missed?) options. So, now any custom and reusable solutions in Java DSL can be implemented in the target project:public class CustomIntegrationFlowDefinition extends IntegrationFlowExtension
{ public CustomIntegrationFlowDefinition…