springboot 整合redis
Posted yhood
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 整合redis相关的知识,希望对你有一定的参考价值。
pom.xml
<!--整合redis-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
application.yml
spring:
redis: database: 0 # Redis数据库索引(默认为0) host: localhost # Redis服务器地址 port: 6379 # Redis服务器连接端口 password: 1234 # Redis服务器连接密码(默认为空) lettuce: pool: max-active: 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8 max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制) 默认 -1 max-idle: 8 # 连接池中的最大空闲连接 默认 8 min-idle: 0 # 连接池中的最小空闲连接 默认 0
在springboot启动类ApplicationStart中加上注解@EnableCaching,开启缓存
使用:
@Autowired private StringRedisTemplate stringRedisTemplate;
以上是关于springboot 整合redis的主要内容,如果未能解决你的问题,请参考以下文章
[SpringBoot系列]SpringBoot如何整合SSMP
SpringBoot完成SSM整合之SpringBoot整合junit