数据库
首页 > 数据库> > mysql数据库date类型时间取出多了8个小时

mysql数据库date类型时间取出多了8个小时

作者:互联网

数据库时间如下:

 

 数据库配置

spring:
datasource:
username: root
password: root
url: jdbc:mysql://localhost:3306/ag_admin?&serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&useSSL=false
driver-class-name: com.mysql.jdbc.Driver

查询出数据如下:j多了8个 小时

 

 

原因由于我们大部分使用的时间默认时区是东八区,而数据库配置的 serverTimezone=UTC 是世界标准时间(美国时间),所以差了8个小时。

解决方案:

时区改为东八区

serverTimezone= GMT%2B8

 

标签:UTC,jdbc,东八区,数据库,mysql,date,serverTimezone
来源: https://www.cnblogs.com/lfyu/p/12523222.html