Mybatis plus 数据库时间对的,取出来后,时间少了8小时,数据连接的时区也是对的
- 数据库是对的
- 代码取出来是对的
- 接口返回的JSON不对
出现这种情况在 @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;
标签:JsonFormat,来后,数据库,时间,Mybatis,plus
From: https://www.cnblogs.com/vipsoft/p/18516966