1. 程式人生 > >MySql驅動8.0.11版本的一些使用注意事項

MySql驅動8.0.11版本的一些使用注意事項

1>解決java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone.

新增格式:

?serverTimezone=GMT%2B8&

使用的資料庫是MySQL,驅動是8.0.11,這是由於資料庫和系統時區差異所造成的,在jdbc連線的url後面加上serverTimezone=GMT即可解決問題,如果需要使用gmt+8時區,需要寫成GMT%2B8,否則會被解析為空。再一個解決辦法就是使用低版本的MySQL jdbc驅動,5.1.28不會存在時區的問題。

2>解決:Fri May 18 15:00:19 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.

在後面加入:useSSL=false

3>解決:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

不能這樣 driverClass="com.mysql.jdbc.Driver" 寫了,應該修改成 driverClass="com.mysql.cj.jdbc.Driver"


最終如下:

        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
			connectionURL="jdbc:mysql://localhost:3306/springmvc?serverTimezone=GMT%2B8&amp;useSSL=false" 
			userId="root" password="root">
	</jdbcConnection>
還有一些其他的可能未總結到