解决JDBC连接MySQL时发出的警告WARN: Establishing SSL connection without server's identity verification ...

对于稍微有点强迫症的我来说,每次正常加载MySQL驱动后,eclipse的控制台总是出现一行红色警告;

Fri Mar 30 14:55:35 CST 2018 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 using 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 verification.

仔细看了看,发现是字符串中没有配置SSL这个配置项。

需要在连接字符串中加上useSSL=false/true配置。

但是我是在XML中配置,配置如下:




 

jdbc:mysql://localhost:3306/somebodyblog?characterEncoding=utf8
com.mysql.jdbc.Driver
root
123456789

3
10
2
10

在字符串后面加上&useSSL=false后发现eclipse会报错!!!

启动后变成这样:

解决JDBC连接MySQL时发出的警告WARN: Establishing SSL connection without server's identity verification ..._第1张图片

这是为什么呢????

于是搜寻资料发现:

在XML中,包括HTML中,要显示&这个字符,必须对其转义转义!!

遂改称如下样子:

解决JDBC连接MySQL时发出的警告WARN: Establishing SSL connection without server's identity verification ..._第2张图片

贴出来:jdbc:mysql://localhost:3306/somebodyblog?characterEncoding=utf8&useSSL=false

问题解决啦!哈哈哈哈哈,哈哈哈哈哈

你可能感兴趣的:(解决JDBC连接MySQL时发出的警告WARN: Establishing SSL connection without server's identity verification ...)