springboot redis key亂碼

原寫法:redis

@Autowired
private RedisTemplate redisTemplate;

 

寫入redis後,查看key值post

複製代碼
127.0.0.1:6379> keys *
1) "\xac\xed\x00\x05t\x00#ContentPlatform2:ES:UpSertESContent"
2) "\xac\xed\x00\x05t\x00%ContentPlatform2:Lock_v16:CJH_ARTICLE"
3) "\xac\xed\x00\x05t\x00!ContentPlatform2:Lock_v16:V_VIDEO"
4) "\xac\xed\x00\x05t\x00\x1bContentPlatform2:ES:Content"
5) "\xac\xed\x00\x05t\x00#ContentPlatform2:Lock_v16:CJH_VIDEO"
6) "\xac\xed\x00\x05t\x00%ContentPlatform2:Lock_v16:CMS_ARTICLE"
複製代碼

 

解決方式:學習

複製代碼
private RedisTemplate redisTemplate;

@Autowired(required = false)
public void setRedisTemplate(RedisTemplate redisTemplate) {
     RedisSerializer stringSerializer = new StringRedisSerializer();
     redisTemplate.setKeySerializer(stringSerializer);
     redisTemplate.setValueSerializer(stringSerializer);
     redisTemplate.setHashKeySerializer(stringSerializer);
     redisTemplate.setHashValueSerializer(stringSerializer);
     this.redisTemplate = redisTemplate;
}
複製代碼

 

調整後查看redis key值:ui

127.0.0.1:6379> keys *
1) "ContentPlatform2:Lock_v17:V_VIDEO"
2) "ContentPlatform2:Lock_v17:CMS_ARTICLE"
3) "ContentPlatform2:ES:Content"
4) "ContentPlatform2:Lock_v17:CJH_ARTICLE」

 

做者:陳敬(Cathy) 
出處:http://www.cnblogs.com/janes/ 
博客文章僅供交流學習,請勿用於商業用途。如需轉載,請務必註明出處。this

相關文章
相關標籤/搜索