StringRedisTemplate操作Redis时抛: Unexpected token (VALUE_STRING)
用spring的StringRedisTemplate
操作Redis的list结构. 存入时正常, 取数时报了下面的异常.
异常已经解决, 但是疑惑原理. 不知道有没有遇到过, 并且知道详细原因的?
异常信息
Redis反序列化报:
`Unexpected token (VALUE_STRING), expected START_ARRAY: need JSON Array to contain As.WRAPPER_ARRAY type information for class java.util.Date`
解决
将配置类的 om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
注释掉.
@Bean
public StringRedisTemplate stringRedisTemplate(RedisConnectionFactory factory) {
StringRedisTemplate template = new StringRedisTemplate(factory);
Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
ObjectMapper om = new ObjectMapper();
om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
// 注释这行配置, 解决 `Unexpected token (VALUE_STRING), expected START_ARRAY: need JSON Array to contain As.WRAPPER_ARRAY type information for class java.util.Date`
// om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
jackson2JsonRedisSerializer.setObjectMapper(om);
template.setValueSerializer(jackson2JsonRedisSerializer);
template.afterPropertiesSet();
return template;
}
代码
存储
...
BoundListOperations ops = redisTemplate.boundListOps("xxx");
// push一个对象, 其中含有 java.util.Date 类型的名为 timestamp 字段
Long len = ops.leftPush(object);
...
取值
...
BoundListOperations ops = redisTemplate.boundListOps("xxx");
// !这里报了前文所述的异常!
List hisList = ops.range(0, 3);
...
查看Redis里的数据:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论