博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JDBC连接数据库时候出错
阅读量:4884 次
发布时间:2019-06-11

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

错误提示如下:

Fri May 13 09:06:04 CST 2016 WARN: Establishing SSL connection without server's identity verification

is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be
established by default if explicit option isn't set. For compliance with existing applications not us
ing SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable
SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verifica
tion.

解决方法:

原来的代码:

driver="com.mysql.jdbc.Driver";        url="jdbc:mysql://localhost:3306/db_1";        username="root";        password="123qwe";

改成:

driver="com.mysql.jdbc.Driver";        url="jdbc:mysql://localhost:3306/db_1?characterEncoding=UTF8&useSSL=false";        username="root";        password="123qwe";

这样就可以了~

转载于:https://www.cnblogs.com/simuhunluo/p/6692276.html

你可能感兴趣的文章
java之静态代理与动态代理
查看>>
软件测试2019:第四次作业
查看>>
201571030335 + 小学四则运算练习软件项目报告
查看>>
不用代码就能实现get与post
查看>>
gdb基本调试命令
查看>>
互联网开放平台API安全设计
查看>>
OPMN
查看>>
LOG收集系统(一):原日志至收集
查看>>
【文摘】经营十二条
查看>>
Logstash连接Elasticsearch异常
查看>>
用户交互程序,格式化输出
查看>>
SPOJ PT07X Vertex Cover
查看>>
$ python-json模块的基本用法
查看>>
5.6.3.4 trim()方法
查看>>
SQL演练
查看>>
React Antd中样式的修改
查看>>
Spring 应用外部属性文件 配置 context 错误
查看>>
导入lxml找不到etree,报ImportError:DLL load failed:找不到指定的程序
查看>>
面向对象一
查看>>
大象的崛起!Hadoop七年发展风雨录
查看>>