spring-data-redis Jackson serialization

喜夏-厌秋 提交于 2019-12-04 16:44:19

The serializer/mapper used by the template does not affect the one used by the repository since the repository directly operates upon the byte[] using Converter implementations for reading/writing data based on domain type metadata.

Please refer to the Object to Hash Mapping section of the reference manual for guidance how to write and register a custom Converter.

Have you tried disable serialization feature SerializationFeature.WRITE_DATES_AS_TIMESTAMPS?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!