欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot~mybatis里localdatetime序列化问题

程序员文章站 2023-10-17 14:05:25
问题起因 主要是使用mybatis作为ORM之后,返回的对象为Map,然后对于数据库的datetime,datestamp类型返回为时间戳而不是标准的时间,这个问题解决方案有两种,大叔分析一下: 1. 在mapper的select里,使用mysql这些数据库的函数,dateformat进行转化, 2 ......

问题起因

主要是使用mybatis作为orm之后,返回的对象为map,然后对于数据库的datetime,datestamp类型返回为时间戳而不是标准的时间,这个问题解决方案有两种,大叔分析一下:

  1. 在mapper的select里,使用mysql这些数据库的函数,dateformat进行转化,缺点,单元测试里使用h2数据库时会找不到这些函数
  2. 在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"
        }
    ]
}