如何在与Redis群集连接时在jedis中启用TLS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在与Redis群集连接时在jedis中启用TLS相关的知识,希望对你有一定的参考价值。
我们在Spring bean中使用Redis for cache进行缓存,spring-data-redis 1.7.1,jedis 2.9.0。
如何在与Redis群集连接时在jedis中启用TLS?
如果您有任何建议,请评论
答案
您可能实际上需要一个略微版本的spring-data-redis,但是使用spring-data-redis版本1.8.11和jedis 2.9这可以:
<beans:bean id='cacheManager'
class='org.springframework.data.redis.cache.RedisCacheManager'
c:redis-operations-ref='redisTemplate'/>
<beans:bean id='redisTemplate' class='org.springframework.data.redis.core.RedisTemplate' p:connection-factory-ref='jedisConFac' />
<beans:bean id='jedisConFac' class='org.springframework.data.redis.connection.jedis.JedisConnectionFactory' p:host-name='HOST' p:port='PORT' p:use-ssl='true' />
以上是关于如何在与Redis群集连接时在jedis中启用TLS的主要内容,如果未能解决你的问题,请参考以下文章