码迷,mamicode.com
首页 > 数据库 > 详细

部署mysql版本项目问题记录

时间:2018-11-22 18:19:52      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:mes   values   his   cal   tab   mysq   har   property   test   

一,com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure报错

将url从jdbc:mysql://localhost:3306/datashare?useUnicode=true&characterEncoding=utf-8&useSSL=true改为

jdbc:mysql://localhost:3306/datashare?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=UTC

二,The connection property ‘zeroDateTimeBehavior‘ only accepts values of the form: ‘exception‘, ‘round‘ or ‘convertToNull‘. The value ‘CONVERT_TO_NULL‘ is not in this set.报错

具体信息为:

The connection property ‘zeroDateTimeBehavior‘ only accepts values of the form: ‘exception‘, ‘round‘ or ‘convertToNull‘. The value ‘convertToNull ‘ is not in this set.

将zeroDateTimeBehavior=CONVERT_TO_NULL改为zeroDateTimeBehavior=convertToNull 

三,mysql查询时表名大写的时候报错Table ‘datashare.TEST‘ doesn‘t exist

用 root 登录,修改 /etc/my.cnf (注意:以实际 my.cnf 配置文件路径为准)
在 [mysqld] 节点下,加入一行: lower_case_table_names=1(0:大小写敏感;1:大小写不敏感)

重启 MySQL 即可;

部署mysql版本项目问题记录

标签:mes   values   his   cal   tab   mysq   har   property   test   

原文地址:https://www.cnblogs.com/cailijuan/p/10002475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!