Java连接MySql报错—— com.mysql.cj.exceptions.The server time zone value '???ú±ê×??±??'
程序员文章站
2022-04-04 20:53:31
...
自从公司数据库版本从5的版本换成8的版本,项目启动总是莫名报错
今天教大家解决一下java链接mysql数据库乱码异常的解决方式
这是之前链接数据库的配置文件
mysql5的版本可以直接路径+数据库名进行链接
但是当链接mysql8以上的版本就需要更改配置了
?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8
我们需要把这行代码拼接在数据库路径后面
简单讲解一下:
mysql数据库用的是gbk编码,而项目数据库用的是utf-8编码,这时候如果添加了useUnicode=true&characterEncoding=UTF-8,作用有以下两个方面
1.存数据时:
数据库在存放项目数据的时候会先用UTF-8格式将数据解码成字节码,然后再将解码后的字节码重新使用GBK编码存放到数据库中。
2.取数据时:
在从数据库中取数据的时候,数据库会先将数据库中的数据按GBK格式解码成字节码,然后再将解码后的字节码重新按UTF-8格式编码数据,最后再将数据返回给客户端。
MySQL jdbc 6.0 版本以上必须配置“serverTimezone”参数
UTC代表的是全球标准时间
若我们使用的时间是北京时区也就是东八区,领先UTC八个小时。url的时区使用中国标准时间。也是就serverTimezone=Asia/Shanghai
修改完数据库配置后项目完美运行.感谢观看!
上一篇: maven(mvc)连接MySQL报错[Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The se]
下一篇: 解决:Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone valu
推荐阅读
-
org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.sql.SQLException: The server time zone value 'Ö
-
SpringBoot连接MySQL8.0报错:-The Server time zone value ‘�й���ʱ��’ is unrecognized or represents more
-
对于使用JDBC连接mysql数据时The server time zone value '¤¤°ê¼Ð·Ç®É¶¡'...的异常问题解决。
-
JDBC:Exception in thread “main“ java.sql.SQLException: The server time zone value ‘�й���ʱ�报错
-
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized o
-
Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value '�й���ʱ��' is unrecognized or represents m
-
连接mysql数据库报错java.sql.SQLException: The server time zone value '�й���ʱ��'
-
org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.sql.SQLException: The server time zone value 'Ö
-
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized o
-
SpringBoot连接MySQL8.0报错:-The Server time zone value ‘�й���ʱ��’ is unrecognized or represents more