spring data redisTemplate操作redis多个数据库

问题场景:

最近的项目需要同时操作一个redis中多个数据库,然后发现redisTemplate中并没有提供什么切换数据库的方法
这引起了我的思考


原因分析:

我们使用springboot redisTemplate最常规的做法就是在配置文件中配置redis的url,
然后springboot自动注入配置自动生成redisTemplate这个bean
但这里也没有提及redis0到15号数据库的选择

代码分析
RedisTemplate继承RedisAccessor
RedisAccessor中有这样一个方法

 public void setConnectionFactory(RedisConnectionFactory connectionFactory) {
        this.connectionFactory = connectionFactory;
    }

这个方法应该就是负责设置redis连接配置的
然后这个RedisConnectionFactory是个接口,不能直接生成实例
那么必定有产出RedisConnectionFactory实例的方法或者继承他的类

找到了他的子类LettuceConnectionFactory


里面有这个方法

public LettuceConnectionFactory(RedisStandaloneConfiguration configuration) {
        this((RedisStandaloneConfiguration)configuration, new LettuceConnectionFactory.MutableLettuceClientConfiguration());
    }

刚好我的redis是单机运作,就用它了
后面的就基本是简单new对象set属性就好了,不需要多说

我直接给出完整版配置供大家参考


解决方案:

@SpringBootConfiguration
public class RedisConfig {

    //redis地址
    @Value("${spring.redis.host}")
    private String host;

    //redis端口号
    @Value("${spring.redis.port}")
    private int port;




    @Bean
    RedisTemplate<String,Object> deliveryRedisTemplate(){

        RedisStandaloneConfiguration server = new RedisStandaloneConfiguration();
        server.setHostName(host); // 指定地址
        server.setDatabase(0); // 指定数据库
        server.setPort(port); //指定端口
        LettuceConnectionFactory factory = new LettuceConnectionFactory(server);
        factory.afterPropertiesSet(); //刷新配置

        RedisTemplate<String,Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(factory);
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(new FastJsonRedisSerializer<>(Object.class));

        return redisTemplate;
    }

..............需要则配置多个redisTemplate对象的bean即可

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值