springboot连接redis配置
时间: 2023-04-26 15:02:12 浏览: 100
详解springboot配置多个redis连接
Spring Boot连接Redis的配置步骤如下:
1. 添加Redis依赖
在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 配置Redis连接信息
在application.properties文件中添加以下配置:
```
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=yourpassword
```
3. 创建RedisTemplate
在Java代码中创建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
在Java代码中使用RedisTemplate对象进行Redis操作,例如:
```
@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的配置步骤。
阅读全文