我们需要在数据库 URL中设置serverTimezone属性:
static final String DB_URL = "jdbc:mysql://localhost:3306/RUNOOB" +
"?serverTimezone=GMT%2B8";
这里的 GMT%2B8 代表是东八区。
我们需要在数据库 URL中设置serverTimezone属性:
static final String DB_URL = "jdbc:mysql://localhost:3306/RUNOOB" +
"?serverTimezone=GMT%2B8";
这里的 GMT%2B8 代表是东八区。