Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community I’m pleased to announce the release of Spring Session 2.0.0.M3. This release is focused primarily on ensuring compatibility with Spring Framework 5.0.0.RC3 and Spring Data Kay RC1 which is the minimum Spring version required.
This release includes the following new features:
Support added for Spring WebFlux
Support for WebFlux’s WebSession
Added ReactorSessionRepository
to support a reactive SessionRepository
API. The default implementation provided is MapReactorSessionRepository
.
We have split Spring Session into modules based upon the repository implementation. You will find:
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-core</artifactId>
<version>2.0.0.M3</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
<version>2.0.0.M3</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-hazelcast</artifactId>
<version>2.0.0.M3</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-jdbc</artifactId>
<version>2.0.0.M3</version>
</dependency>
If you have feedback on this release, I encourage you to reach out via StackOverflow, GitHub Issues, or via the comments section. You can also ping me @rob_winch, Joe @joe_grandja, or Vedran @vedran_pavic on Twitter.
Of course the best feedback comes in the form of contributions.