如何使用Spring Boot框架整合Redis:超详细案例教程
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
public class RedisConfig {
@Bean
public LettuceConnectionFactory redisConnectionFactory() {
return new LettuceConnectionFactory(); // 默认连接本地Redis实例
}
@Bean
public RedisTemplate<Object, Object> redisTemplate() {
RedisTemplate<Object, Object> template = new RedisTemplate<>();
template.setConnectionFactory(redisConnectionFactory());
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new Jackson2JsonRedisSerializer<>(Object.class));
return template;
}
}
这段代码定义了一个配置类RedisConfig
,其中包含了redisConnectionFactory
和redisTemplate
两个Bean的定义。redisConnectionFactory
方法创建了一个连接到本地Redis实例的LettuceConnectionFactory
。redisTemplate
方法配置了一个RedisTemplate
,将连接工厂设置为刚才定义的工厂,并且设置了键和值的序列化方式,使用StringRedisSerializer
作为键的序列化方式,使用Jackson2JsonRedisSerializer
作为值的序列化方式。这样,我们就可以在Spring Boot应用中使用Redis进行数据的存取了。
评论已关闭