SpringBoot | 集成Redis
Posted 如有一味绝境,非历十方生死
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot | 集成Redis相关的知识,希望对你有一定的参考价值。
Windows下安装:
https://github.com/MicrosoftArchive/redis/releases
zip下就解包到自定义目录下,msi就跟着步骤安装
进入安装目录下运行命令,
redis-server.exe redis.windows.conf
如上图就表示成功安装
在springboot集成redis:
doc: https://spring.io/projects/spring-data-redis
依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
配置文件application.properties:
spring.redis.host=127.0.0.1 spring.redis.port=6379
以上是关于SpringBoot | 集成Redis的主要内容,如果未能解决你的问题,请参考以下文章
Springboot集成Redis详细教程(缓存注解使用@Cacheable,@CacheEvict,@CachePut)