知识点:
springboot中整合redis
springboot中redisTemplate的使用
一:springboot中整合redis
(1)pom.xml文件中引入依赖
<!--加入redis依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
(2)application.yml文件中加入redis相关配置
host:redis 服务器地址
port:6379 端口
database:数据库索引(默认为0)
password:服务器连接密码(默认为空)
timeout:连接超时时间(毫秒)
springboot中,使用redisTemplate操作redis
原文:https://www.cnblogs.com/shuaifing/p/11213253.html