Spring Framework 5.0 M2 released
Dear Spring community,
It is my pleasure to announce that the second Spring Framework 5.0 milestone is available now: Check http://projects.spring.io/spring-framework/ for how to obtain it from our milestone repository, and keep your feedback coming!
This release introduces a functional web endpoint variant, based on the same foundation as our reactive @Controller
model (introduced in 5.0 M1). Stay tuned for Arjen's dedicated blog post, coming up tomorrow! Here's a teaser...
RouterFunction<String> route =
route(GET("/hello-world"),
request -> Response.ok().body(fromObject("Hello…