//可以main启动方法设置
TimeZone.setDefault(TimeZone.getTimeZone("GMT+8"));
jdbc:mysql://192.168.11.50:3306/luhe?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
//第一种方法:最好用第一种
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date lastTime;
#第二种方法:将spring的json构造器的时区
spring:
#json 时间戳统一转换
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8