java.sql.SQLException: The server time zone v…

2020-04-22 16:06:54来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more than one time zone

报错信息:
java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more than one time zone.
You must configure either the server or JDBC driver (via the 'serverTimezone' configuration property) to use a more specifc time zone value if you want to utilize time zone support.

解决方法(修改application.yml配置文件):
在url后面添加?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

spring:
  datasource:
# 数据源基本配置
username: root
password: 123456
url: jdbc:mysql://localhost:3306/nnluck
?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
    driver-class-name: com.mysql.cj.jdbc.Driver



原文链接:https://www.cnblogs.com/nnluck/p/12752689.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:进军2020年:Java研发岗千道面试题总结:MyBatis+Redis+Spring...

下一篇:MyEclipse/Eclipse结构的JavaWeb项目导入Eclipse中运行教程 步骤