内容简介:Spring Session 2.0.0 正式发布:升级至 Java 8
Spring Session 2.0.0 已正式发布,看看值得关注的主要更新:
-
升级到 Java 8,基于 Spring Framework 5
-
增加对通过使用 Redis
ReactiveSessionRepository对管理 Spring WebFlux’sWebSession的支持 -
改进
Session和SessionRepositoryAPI -
为所有受支持的会话存储提供改进和协调的配置支持
-
多处的性能改进和错误修复
使用
Maven
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-core</artifactId>
<version>2.0.0.RELEASE</version>
</dependency>
</dependencies>
Gradle
dependencies {
compile 'org.springframework.session:spring-session-core:2.0.0.RELEASE'
}
Spring Session 致力于提供一个公共基础设施会话,主要功能如下:
-
从任意的环境中访问一个会话 (i.e. web, messaging infrastructure, etc)
-
WEB 环境下
-
以开发尚中立的方式支持集群
-
可插拔策略可以确定 session id
-
WebSocket 活跃的时候可以简单的保持 HttpSession
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 腾讯云发布IPv6智联升级方案 支撑企业用户分钟级平滑升级
- BeetlSQL 3.2.6 发布,建议升级
- 蝉知7.6正式发布,移动端重磅升级
- KaOS 2019.02 发布,系统全面升级
- Node 12.1.0 发布,ICU 升级
- Node 12.1.0 发布,ICU 升级
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Mastering Regular Expressions, Second Edition
Jeffrey E F Friedl / O'Reilly Media / 2002-07-15 / USD 39.95
Regular expressions are an extremely powerful tool for manipulating text and data. They have spread like wildfire in recent years, now offered as standard features in Perl, Java, VB.NET and C# (and an......一起来看看 《Mastering Regular Expressions, Second Edition》 这本书的介绍吧!