Several Differences Between MySQL 5.x and MySQL 8.0.X The differences in application.properties are commented out and correspond to the 8.0.x version. spring.datasource.driver-class-name=com.mysql.jdbc.Driver //spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.username=root //Your username. Default is root spring.datasource.password=123456//Your password. Default is root spring.datasource.url=jdbc:mysql://127.0.0.1:3306/sell?characterEncoding=utf-8&useSSL=false //spring.datasource.url=jdbc:mysql://127.0.0.1:3306/sell?useUnicode=true&characterEncoding=UTF8&useSSL=false&serverTimezone=UTC spring.jpa.show-sql=true server.context-path=/sell //server.servlet.context-path=/sell Upgrading MySql5.x to MySql8.x is very simple. Generally speaking, it only takes two steps. 1. Replace the new jar package <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.18</version> </dependency> 2. Replace the new driver class com.mysql.cj.jdbc.Driver 3. Replace the new URL connection and specify the time zone # Set the time to GMT8 serverTimezone=GMT%2B8 # Full URL String url="jdbc:mysql://"+dbHost+":"+dbPort+"/"+dbName+"?" + "serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8" + "&port="+dbPort+"&autoReconnect=true"; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to implement Ajax concurrent request control based on JS
>>: Sample code for implementing rolling updates of services using Docker Swarm
In the process of Django web development, when wr...
1. The first method is to start the local tomcat ...
background Use idea with docker to realize the wh...
Solution to mysql not closing: Right-click on the...
HTML imitates the Baidu Encyclopedia navigation d...
Look at the code first Copy code The code is as fo...
The search performance from fastest to slowest is...
Table of contents Transaction Isolation Level Wha...
Table of contents 1. Download 2. Deployment 3. Ng...
Generally, we rarely meet HR, but once we do, it c...
The ps command in Linux is the abbreviation of Pr...
1. Window -> preferences to open the eclipse p...
Table of contents 1. Open WeChat Pay 1.1 Affiliat...
When we use Vue for development, we may encounter...
Create a mysql user and authorize: Format: grant ...