mybatis plus + oracle date时间样式问题 2018-04-09T17:48:22.000+08:00

使用mybatis plus读取 oracle的date时间类型,查询结果类型为2018-04-09T17:48:22.000+08:00

处理方法:

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
public Date getCreateTime() {
    return createTime;
}
在javaBean(entity)的属性get方法上增加注解  
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
其中timezone为时区


你可能感兴趣的:(java,spring,boot,mybatis,plus)