欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

org.springframework.data.redis.serializer.SerializationException: Could not read JSON

程序员文章站 2022-01-13 10:56:28
...

org.springframework.data.redis.serializer.SerializationException: Could not read JSON

 

将数据存储到redis中报错,由于对象(实体)中缺少json的某个字段属性引起

解决办法。@JsonIgnoreProperties(ignoreUnknown = true)  

另外一种方式 在调用的。

@Autowired
private RedisTemplate redisTemplate;  不要指定范型也可以

@Autowired private RedisTemplate<String,Object> redisTemplate;