Mybatis plus 数据库时间对的,取出来后,时间少了8小时, Date format "yyyy-MM-dd HH:mm:ss"
Mybatis plus 数据库时间对的,取出来后,时间少了8小时,数据连接的时区也是对的
- 数据库是对的
- 代码取出来是对的
- 接口返回的JSON不对
SpringBoot 返回默认采用 jackson ,出现这种情况在 @JsonFormat 加上时区
/**
* 创建时间
*/
@Schema(description = "创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@TableField(value = "create_time", fill = FieldFill.INSERT)
private Date createTime;
/**
* 创建时间
*/
@Schema(description = "创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@TableField(value = "create_time", fill = FieldFill.INSERT)
private Date createTime;
全局配置
spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8
本文来自博客园,作者:VipSoft 转载请注明原文链接:https://www.cnblogs.com/vipsoft/p/18516966