springboot~mybatis里localdatetime序列化问题
程序员文章站
2022-06-02 23:25:31
问题起因 主要是使用mybatis作为ORM之后,返回的对象为Map,然后对于数据库的datetime,datestamp类型返回为时间戳而不是标准的时间,这个问题解决方案有两种,大叔分析一下: 1. 在mapper的select里,使用mysql这些数据库的函数,dateformat进行转化, 2 ......
问题起因
主要是使用mybatis作为orm之后,返回的对象为map,然后对于数据库的datetime,datestamp类型返回为时间戳而不是标准的时间,这个问题解决方案有两种,大叔分析一下:
- 在mapper的select里,使用mysql这些数据库的函数,dateformat进行转化,
缺点,单元测试里使用h2数据库时会找不到这些函数
- 在objectmapper反序列化时统一进行处理,这种方式更好,与具体数据库解耦了
实现
引用依赖包
'org.mybatis:mybatis-typehandlers-jsr310:1.0.2', 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.2'
添加组件类
/** * 序列化localdatetime处理. */ @component public class jacksonconfig { /** * 注入时间处理. * * @return */ @bean @primary public objectmapper objectmapper() { objectmapper mapper = new objectmapper(); mapper.registermodule(new jsr310module()); mapper.setdateformat(new simpledateformat("yyyy-mm-dd't'hh:mm:ss.sss'z'")); return mapper; } }
成功解决问题
{ "pagecurrent": 1, "pagesize": 10, "pagetotal": 1, "data": [ { "freedays": 8, "city": "", "leadingperson": "", "contactperson": "zhangsan", "source": 1, "customername": "i-counting", "intention": 1, "province": "", "appointmenttime": "2018-09-20t00:00:00.000z", "createtime": "2018-09-27t06:33:49.000z", "telephonestatus": 1, "id": 10000, "contactphone": "135" } ] }
推荐阅读
-
springboot~mybatis里localdatetime序列化问题
-
springboot LocalDateTime 反序列化
-
解决SpringBoot打成jar运行后无法读取resources里的文件问题
-
SpringBoot与tk.mybatis整合遇到的问题
-
Springboot2.0整合tk.mybatis出问题
-
Springboot2.X版本整合Mybatis时yml文件的配置问题
-
IDE下的springboot+mybatis学习笔记(5)-------Excel表格的批量导入(内附图片也没问题)
-
springboot LocalDateTime 序列化、反序列化全局配置
-
springcloud中feign调用处理mybatis-plus Ipage反序列化问题
-
SpringBoot中关于Mybatis使用的三个问题