数据库
首页 > 数据库> > springboot data jdbc 数据库日期和查询出来的结果不一致

springboot data jdbc 数据库日期和查询出来的结果不一致

作者:互联网

解决方法:

一、将serverTimezone=UTC改为CTT

 url: jdbc:mysql://localhost:3306/moviechoicesystem?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&useSSL=false

二、使用thymeleaf遍历的时候,格式化一下。

th:text="${#dates.format(mm.create_time,'yyyy-MM-dd HH:mm')}" 

 

标签:CTT,jdbc,false,springboot,mm,serverTimezone,useSSL,data
来源: https://www.cnblogs.com/javaexplorer/p/13356719.html