1.设置MySQL时区,明确指定 MySQL 数据库的时区,不使用引发误解的 CST
show variables like '%time_zone%';
set global time_zone = '+08:00';
set time_zone = '+08:00';
flush privileges;
2.设置pojo类Date类型字段的JsonFormat
/**
* 条目创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@Column(name = "create_time")
private Date createTime;
参考文献:
数据库时区问题:https://blog.csdn.net/qq_30553235/article/details/79612824
4种解决JSON日期格式的方法:https://www.cnblogs.com/best/p/3537030.html