数据库中查出来的时间多8小时&查询数据正常展示少8小时

将serverTimezone的配置改为Asia/Shanghai
url: jdbc:mysql://127.0.0.1:3306/bfc?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull&useSSL=false

如果此时还解决不了问题 请在返回DTO类/添加中VO类中添加注解  

    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")

    private Date createDate;

 

上一篇:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' p


下一篇:面试官:int和Integer的区别?为什么要有包装类?