spring boot 使用redis
时间: 2023-09-10 13:11:30 浏览: 113
使用Spring Boot集成Redis非常简单,只需要遵循以下步骤:
1. 在`pom.xml`文件中添加`spring-boot-starter-data-redis`依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 在`application.properties`文件中配置Redis连接信息:
```
spring.redis.host=localhost
spring.redis.port=6379
```
3. 创建一个RedisTemplate bean:
```
@Configuration
public class RedisConfig {
@Bean
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(redisConnectionFactory);
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
return template;
}
}
```
在这个示例中,我们使用了`StringRedisSerializer`用于序列化键,`GenericJackson2JsonRedisSerializer`用于序列化值。
4. 在需要使用Redis的地方注入RedisTemplate bean:
```
@RestController
public class MyController {
@Autowired
private RedisTemplate<String, Object> redisTemplate;
@GetMapping("/redis")
public String redis() {
redisTemplate.opsForValue().set("myKey", "myValue");
Object value = redisTemplate.opsForValue().get("myKey");
return value.toString();
}
}
```
这个示例中我们注入了RedisTemplate bean,然后使用`opsForValue()`方法获取操作字符串的Redis操作对象,并且执行了设置和获取操作。
以上就是使用Spring Boot集成Redis的步骤,希望对你有所帮助!
阅读全文