博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
You must configure either the server or JDBC driver (via the serverTimezone configuration property
阅读量:6772 次
发布时间:2019-06-26

本文共 1245 字,大约阅读时间需要 4 分钟。

使用JDBC连接MySql时出现: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

错误提示:

Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is 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.

解决办法;
在连接字符串后面加上?serverTimezone=UTC

其中UTC是统一标准世界时间。

完整的连接字符串示例:jdbc:mysql://localhost:3306/test?serverTimezone=UTC

或者还有另一种选择:jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8,这个是解决中文乱码输入问题,当然也可以和上面的一起结合:jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC

---------------------
作者:编译人生
来源:CSDN
原文:https://blog.csdn.net/aayygg1234/article/details/78205240
版权声明:本文为博主原创文章,转载请附上博文链接!

spring.datasource.url = jdbc:mysql://127.0.0.1:3306/springboot_cache?setUnicode=true&characterEncoding=utf8&serverTimezone=UTC

 

转载于:https://www.cnblogs.com/wth21-1314/p/10616870.html

你可能感兴趣的文章
navigationController 的返回按钮自定义
查看>>
JS运动从入门到精髓!哈哈
查看>>
HDU1874畅通工程续(floyd||dijkstra)
查看>>
数据分析--布林带策略(择时)
查看>>
java中equals和==的区别
查看>>
二十年后的回眸(6)——中途夭折的初次创业
查看>>
DB2日常运维之总结
查看>>
用hadoop中的libhdfs和fuse-dfs构建快速云存储
查看>>
Redis实战(6)数据类型四Sets
查看>>
Android Studio第八期 - 自定义布局无网有网状态
查看>>
读《Go并发编程实战》第4章 流程控制方式
查看>>
IT168:数据库安全审计用户需求调查报告
查看>>
Lync Server 2010不同规模拓扑图详解
查看>>
QQ群排名优化:“小百度”大蓝海有搞头
查看>>
写在毕业季(四):是做IT?IT?还是IT呢?
查看>>
Gtk-WARNING **: 无法在模块路径中找到主题引擎:“pixmap”
查看>>
验证控件收藏
查看>>
安装配置Varnish3.0手记
查看>>
舌尖上的职场(三)我来买单!
查看>>
HighChartS cpu利用率动态图(Java版)
查看>>