看到十六进制,肯定是因为API保存时使用的序列化和注解的是不同的
下面不是全部代码,只是一个例子
@Cacheable(cacheNames = "comment", key = "'comment-'+#p0", unless = "#result==null") public CommentMain findById(int id) { Optional<CommentMain> optionalCommentMain = commentRepository.findById(id); System.out.println(optionalCommentMain); if (optionalCommentMain.isPresent()) { return optionalCommentMain.get(); } return null; }
public CommentMain findById(int id) { Object o = redisTemplate.opsForValue().get("comment-" + id); if (o != null) { return (CommentMain) o; } else { Optional<CommentMain> optionalCommentMain = commentRepository.findById(id); if (optionalCommentMain.isPresent()) { CommentMain commentMain = optionalCommentMain.get(); redisTemplate.opsForValue().set("comment-" + id, commentMain, 1, TimeUnit.DAYS); return commentMain; } else { return null; } } }
在API代码 APICommentService 中添加一个方法来替换源码中的序列化存储
也就是你使用了下面的这个bean的代码中
// 在保存是去除键名前面的十六进制,例如:\xac\xed\x00\x05t\x00\x0acomment-21 要保存的是acomment-21 // 这种特殊字符出现的原因,是因为RedisTemplate默认使用JdkSerializationRedisSerializer作为序列化工具 @Autowired(required = false) public void setRedisTemplate(RedisTemplate redisTemplate) { // 这里直接把键值转为string保存 RedisSerializer stringSerializer = new StringRedisSerializer(); redisTemplate.setKeySerializer(stringSerializer); redisTemplate.setHashKeySerializer(stringSerializer); this.redisTemplate = redisTemplate; }
加上上面代码就可以将API保存在redis中的键名变为字符串
上面的图片是已经保存在一个目录下的结果
comment是保存的表名,comment-id是保存的字段
两个冒号:: 表示子目录
在API代码中修改代码:
private String cacheName = "comment::"; public CommentMain findById(int id) { Object o = redisTemplate.opsForValue().get(cacheName + "comment-" + id); if (o != null) { return (CommentMain) o; } else { Optional<CommentMain> optionalCommentMain = commentRepository.findById(id); if (optionalCommentMain.isPresent()) { CommentMain commentMain = optionalCommentMain.get(); redisTemplate.opsForValue().set(cacheName+"comment-" + id, commentMain, 1, TimeUnit.DAYS); return commentMain; } else { return null; } } }
自己把代码写错哦了
改成:
serializeKeysWith 使用字符串
serializeValuesWith 使用json
这样就可以 /xk