在springboot中集成redis
只需要导入springboot和redis依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
</dependency>
导入之后可能你会发现用不了,用可能是某些依赖下载不了
下载不了的时候试试这个
http://www.jianshu.com/p/87100dd1ec52
再刷新下依赖就好了
spring-boot-starter-redis添加进来后
引用包至少有
spring-boot-starter-redis.jar
spring-data-redis.jar
jedis.jar
三个包