Methods and steps to upgrade MySql5.x to MySql8.x

Methods and steps to upgrade MySql5.x to MySql8.x

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:
  • Upgrade Docker version of MySQL 5.7 to MySQL 8.0.13, data migration
  • MySQL 8.0 upgrade experience

<<:  How to implement Ajax concurrent request control based on JS

>>:  Sample code for implementing rolling updates of services using Docker Swarm

Recommend

Usage of if judgment in HTML

In the process of Django web development, when wr...

How to solve the problem that mysql cannot be closed

Solution to mysql not closing: Right-click on the...

HTML imitates Baidu Encyclopedia navigation drop-down menu function

HTML imitates the Baidu Encyclopedia navigation d...

How to add links to FLASH in HTML and make it compatible with all major browsers

Look at the code first Copy code The code is as fo...

A brief understanding of MySQL storage field type query efficiency

The search performance from fastest to slowest is...

Detailed explanation of MySQL phantom reads and how to eliminate them

Table of contents Transaction Isolation Level Wha...

Detailed explanation of nginx installation, deployment and usage on Linux

Table of contents 1. Download 2. Deployment 3. Ng...

Description of the hr tag in various browsers

Generally, we rarely meet HR, but once we do, it c...

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Pr...

How to add Tomcat Server configuration to Eclipse

1. Window -> preferences to open the eclipse p...

Mini Programs use Mini Program Cloud to implement WeChat payment functions

Table of contents 1. Open WeChat Pay 1.1 Affiliat...

Vue.set() and this.$set() usage and difference

When we use Vue for development, we may encounter...