We are pleased to announce the release of the Second Milestone of the Java DSL extension
for Spring Integration!
The org.springframework.integration:spring-integration-java-dsl:1.0.0.M2
artifact is available from the
Spring IO Milestone Repository.
Milestone 2 includes several bug fixes, some new features and further improvements.
Thank you to all who tried milestone 1, provided feedback, raised issues, and shared their thoughts.
Here is a summary of major changes since Milestone 1:
Lambda Handler
As you may have noticed, the use of Java 8 Lambdas is the power tool to make this DSL convenient and readable. One community request we received
was to allow the declaration of a Lambda for the .handle()
EIP-method instead of having to declare a POJO and use it as a method invocation. But one concern was to not lose "runtime type conversion".
However, you
can't get the generic type for Lambdas.
After some investigation we found the solution by additing a type
argument. Hence,
several new methods have been added to the IntegrationFlowBuilder
…