如何在与Redis群集连接时在jedis中启用TLS

问题描述 投票:1回答:1

我们在Spring bean中使用Redis for cache进行缓存,spring-data-redis 1.7.1,jedis 2.9.0。

如何在与Redis群集连接时在jedis中启用TLS?

如果您有任何建议,请评论

redis jedis spring-data-redis redis-cluster
1个回答
0
投票

您可能实际上需要一个略微版本的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' />
© www.soinside.com 2019 - 2024. All rights reserved.