我是靠谱客的博主 害羞咖啡,最近开发中收集的这篇文章主要介绍springboot访问多个redis库,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

概述

可能会有这样一个需求,在一个类中,需要多个redistemplate访问不同的redis库,在springboot中以注入方式创建一个redistemplate,另外的redistemplate的话,可以通过new来创建(非注入方式创建)redistemplate

demo

引入pom

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
</dependency>

redis创建方法

public RedisTemplate getRedisTemplate(){
RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration("localhost", 6379);
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(configuration);
RedisTemplate redisTemplate = new RedisTemplate();
redisTemplate.setConnectionFactory(jedisConnectionFactory);
redisTemplate.afterPropertiesSet();
return redisTemplate;
}

最后

以上就是害羞咖啡为你收集整理的springboot访问多个redis库的全部内容,希望文章能够帮你解决springboot访问多个redis库所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部