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.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
public class RedisConfig {
@Bean
public LettuceConnectionFactory redisConnectionFactory() {
return new LettuceConnectionFactory(); // 这里需要配置Redis服务器的host和port
}
@Bean
public RedisTemplate<Object, Object> redisTemplate() {
RedisTemplate<Object, Object> template = new RedisTemplate<>();
template.setConnectionFactory(redisConnectionFactory());
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
return template;
}
}
这段代码定义了一个配置类RedisConfig
,其中包含了redisConnectionFactory
和redisTemplate
两个Bean的定义。redisConnectionFactory
方法创建了一个LettuceConnectionFactory
实例,用于连接Redis服务器。redisTemplate
方法创建了一个RedisTemplate
实例,并配置了键和值的序列化方式。在实际使用时,需要提供Redis服务器的host和port。
评论已关闭