Spring Session JDBC
Spring Session JDBC provides SessionRepository implementation backed by a relational database and configuration support.
Features
Spring Session makes it trivial to support clustered sessions without being tied to an application container specific solution. It also provides transparent integration with:
-
HttpSession
- allows replacing the HttpSession in an application container (i.e. Tomcat) neutral way, with support for providing session IDs in headers to work with RESTful APIs -
WebSocket
- provides the ability to keep the HttpSession alive when receiving WebSocket messages -
WebSession
- allows replacing the Spring WebFlux’s WebSession in an application container neutral way
Adding Spring Session JDBC to your build
此项目使用Maven的BOM(物料清单)和释放火车协调版本,例如Dragonfruit-SR2
,2020.0.3
等等。
在Maven中使用BOM
使用Maven,您需要首先导入BOM表:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-bom</artifactId>
<version>2020.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
-
本示例使用
2020.0.3
,但是您插入了所需的发行培训版本。 -
请注意本
<dependencyManagement>
节和import
范围的用法。
接下来,将您的依赖项添加到项目中,而不添加<version>
:
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-jdbc</artifactId>
</dependency>
</dependencies>
将材料明细表与Gradle一起使用
由于Gradle不提供对Maven BOM的一流支持,因此您可以使用Spring的依赖管理插件。
从Gradle插件门户应用插件(如果需要,请更新版本):
plugins {
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
然后使用它导入BOM表:
dependencyManagement {
imports {
mavenBom 'org.springframework.session:spring-session-bom:2020.0.3'
}
}
最后,将不带版本的依赖项添加到项目中:
dependencies {
compile 'org.springframework.session:spring-session-jdbc'
}
反馈
您可以使用GitHub问题跟踪器来报告Spring Session中的错误或增强功能。
如果您有一般用法方面的问题,请使用spring-session标签询问Stack Overflow。