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;