前言:本文所用jdk版本为:jdk1.8.0_111版本;Spring boot1.5.8版本,工程仍沿用上一篇文章的工程。
一、准备好Redis服务
提到Redis相信很多人都知道它是做什么的,这里不过多做阐述,本文主要看Spring boot如何集成Redis来存储Session,所以首先要准备好一个可用的redis服务。
二、 添加pom依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
</dependency>
这里引入了两个模块:
- spring-boot-starter-redis模块:主要用于提供RedisConnectionFactory去实现redis的连接,它默认提供了Jedis的连接池,如:JedisPoolConfig。
- spring-session-data-redis模块:集成了spring-