问题起因
主要是使用mybatis作为ORM之后,返回的对象为Map,然后对于数据库的datetime,datestamp类型返回为时间戳而不是标准的时间,这个问题解决方案有两种,大叔分析一下:
1.在mapper的select里,使用mysql这些数据库的函数,dateformat进行转化,缺点,单元测试里使用h2数据库时会找不到这些函数
2.在ObjectMapper反序列化时统一进行处理,这种方式更好,与具体数据库解耦了
实现
>引用依赖包
>添加组件类
/** * 序列化localdatetime处理. */@Componentpublic 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; }}>成功解决问题
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。