欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot集成Redis

程序员文章站 2022-07-12 20:58:33
...
<!-- 加载 spring boot redis 包 --> 
<dependency> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-data-redis</artifactId> 
</dependency>

Spring Boot集成Redis

2、在  Springboot  核心配置文件  application.properties  中配置

#配置redis
spring.redis.host=localhost
spring.redis.password=
spring.redis.port=6379

3、配置了上面的步骤,Spring boot 将自动配置 RedisTemplate,在需要操作 redis 的类中注入 redisTemplate; 在使用的类中注入:

@Autowired

private  RedisTemplate<String,  String>  redisTemplate;

或

@Autowired

private  RedisTemplate<Object,  Object>  redisTemplate;

spring  boot  帮我们注入的  redisTemplate  类,泛型里面只能写<String, String>、<Object, Object>

Spring Boot集成Redis

 

 

 

 

 

相关标签: 笔记本 Redis