springboot整合redis配置类
时间: 2023-04-28 22:01:00 浏览: 163
Spring Boot整合Redis的配置类通常包含以下内容:
1. 引入Redis依赖
在pom.xml文件中添加Redis依赖,例如:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 配置Redis连接信息
在application.properties或application.yml文件中配置Redis连接信息,例如:
```
spring.redis.host=127...1
spring.redis.port=6379
spring.redis.password=
```
3. 配置RedisTemplate
创建RedisTemplate对象,用于操作Redis数据库,例如:
```
@Configuration
public class RedisConfig {
@Bean
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
redisTemplate.setConnectionFactory(redisConnectionFactory);
redisTemplate.setKeySerializer(new StringRedisSerializer());
redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
return redisTemplate;
}
}
```
4. 使用RedisTemplate操作Redis数据库
在需要使用Redis的地方注入RedisTemplate对象,例如:
```
@Autowired
private RedisTemplate<String, Object> redisTemplate;
public void set(String key, Object value) {
redisTemplate.opsForValue().set(key, value);
}
public Object get(String key) {
return redisTemplate.opsForValue().get(key);
}
```
以上就是Spring Boot整合Redis的配置类的基本内容。
阅读全文