Springboot集成Redis
Posted five five open
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot集成Redis相关的知识,希望对你有一定的参考价值。
1. 添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-redis</artifactId> <version>1.4.7.RELEASE</version>
</dependency>
注解:spring-boot-starter-redis依赖和spring-boot-starter-data-redis两个依赖基本一致
2. application.properties配置redis信息
以上是关于Springboot集成Redis的主要内容,如果未能解决你的问题,请参考以下文章
Springboot集成Redis详细教程(缓存注解使用@Cacheable,@CacheEvict,@CachePut)