springboot整合redis的流程
时间: 2023-07-08 11:37:58 浏览: 79
18springboot+Redis学习笔记1
好的,下面是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 # Redis服务器地址
spring.redis.port=6379 # Redis服务器连接端口
spring.redis.password= # Redis服务器连接密码(如果没有设置密码则不需要)
spring.redis.database=0 # Redis数据库索引(默认为0)
```
3. 编写Redis配置类
创建一个Redis配置类,用于初始化RedisTemplate和StringRedisTemplate。
```
@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;
}
@Bean
public StringRedisTemplate stringRedisTemplate(RedisConnectionFactory redisConnectionFactory) {
StringRedisTemplate template = new StringRedisTemplate();
template.setConnectionFactory(redisConnectionFactory);
return template;
}
}
```
4. 使用Redis
使用@Autowired注解注入RedisTemplate或StringRedisTemplate即可使用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的流程。
阅读全文