参考网址:https://blog.csdn.net/yunhaibin/article/details/9001198#
业务涉及将之前的一主二从redis集群改造后5主5从的redis集群,改造完成后发现一个问题,往redis里面写数据时,key值钱面会出现多余的值(比正常的key值里面多了个t6),如下图
用redis链接客户端访问时,会显示乱码,如下图
经参考大神文章,在redis.xml配置增加redis序列化相关匹配信息解决
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate" p:connection-factory-ref="jedisConnectionFactory"> <property name="keySerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" /> </property> <property name="valueSerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" /> </property> <property name="hashKeySerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" /> </property> <property name="hashValueSerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer" /> </property> </bean>
修改后重新添加key值,客户端可正常展示key值,如下图
原文地址:https://www.cnblogs.com/lchzlp/p/11192630.html
时间: 2024-10-28 08:35:05