1. spring-redis-session
1.1. 配置
/**
* @author laoliangliang
* @date 2018/12/21 17:19
*/
@Configuration
//maxInactiveIntervalInSeconds session超时时间,单位秒
@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 600)
public class RedisSessionConfig {
}
1.2. pom
<!-- spring redis session -->
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
<version>1.3.1.RELEASE</version>
</dependency>
1.3. 说明
以上配置都建立在已经配置好基础的redis使用,需要额外添加spring redis session功能