日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

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

發布時間:2024/9/20 数据库 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 解决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中配置,配置如下:

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
?<!-- 這是默認配置信息 -->
?<default-config>?
?<!-- 連接四大參數配置 -->
?<property name="jdbcUrl">jdbc:mysql://localhost:3306/somebodyblog?characterEncoding=utf8</property>
?<property name="driverClass">com.mysql.jdbc.Driver</property>
?<property name="user">root</property>
?<property name="password">123456789</property>
?<!-- 池參數配置 -->
?<property name="acquireIncrement">3</property>
?<property name="initialPoolSize">10</property>
?<property name="minPoolSize">2</property>
?<property name="maxPoolSize">10</property>
?</default-config>

</c3p0-config>

在字符串后面加上&useSSL=false后發現eclipse會報錯!!!

啟動后變成這樣:

這是為什么呢????

于是搜尋資料發現:

在XML中,包括HTML中,要顯示&這個字符,必須對其轉義轉義!!

遂改稱如下樣子:

貼出來:jdbc:mysql://localhost:3306/somebodyblog?characterEncoding=utf8&amp;useSSL=false

問題解決啦!哈哈哈哈哈,哈哈哈哈哈
————————————————
版權聲明:本文為CSDN博主「huang_xin2016」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/huang_xin2016/article/details/79757799

總結

以上是生活随笔為你收集整理的解决JDBC连接MySQL时发出的警告WARN: Establishing SSL connection without server‘s identity verification ...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。