springboot集成redis
Posted 悟空姓氏张
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot集成redis相关的知识,希望对你有一定的参考价值。
导入maven依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-redis</artifactId> </dependency>
配置springboot的redis环境 application.yml 文件中
spring: redis: host: 127.0.0.1 password: port: 6379 pool: max-idle: 100 min-idle: 1 max-active: 1000 max-wait: -1
redis服务windows 下开机自启动
redis-server --service-install redis.windows.conf
手动启动redis
redis-server --service-start
以上是关于springboot集成redis的主要内容,如果未能解决你的问题,请参考以下文章
Springboot集成Redis详细教程(缓存注解使用@Cacheable,@CacheEvict,@CachePut)