Notes on upgrading to mysql-connector-java8.0.27

Notes on upgrading to mysql-connector-java8.0.27

Recently, an online security scan found a vulnerability in the MySQL connector. I checked and found that the version used was 5.1.47, which is indeed a long time ago.

It is recommended to upgrade to the latest version 8.0.27

There are always some problems with upgrades. After changing the connector, the deployment reported an error.

### Error querying database. Cause: java.lang.RuntimeException: java.lang.ClassNotFoundException: com.mysql.jdbc.jdbc2.optional.MysqlDataSource

Can't connect to the database

I searched the configuration file and found that the class for the connection pool configuration connection could not be found.

After switching back to mysql-connector-java 5.1.47, this class can be found

Checking the jar package source code, I found that after changing mysql-connector-java 8.0.27, the path of the class connecting to jdbc has changed, which is a big pit.

Finally, just change it to com.mysql.cj.jdbc.MysqlDataSource

Finally, attach the database connection configuration of mysql8.0+

jdbc.driverClassName=com.mysql.cj.jdbc.Driver

jdbc.url=jdbc:mysql://*****?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&allowMultiQueries=true&useSSL=false&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true

The rest of the framework configuration is

<spring_version>4.3.29.RELEASE</spring_version>

<mybatis_version>3.4.0</mybatis_version>

<mybatis_spring_version>1.3.0</mybatis_spring_version>

This is the end of this article about the precautions for upgrading to mysql-connector-java8.0.27. For more information about mysql-connector-java8.0.27, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.27 installation and configuration method graphic tutorial (Windows 64 bit)
  • mysql8.0.27 configuration steps and precautions
  • Detailed steps to install MySQL 8.0.27 in Linux 7.6 binary
  • MySQL 8.0.28 installation and uninstallation tutorial in Ubuntu 20
  • Ubuntu MySQL 8.0.28 installation and configuration method graphic tutorial
  • Windows free installation MySQL 8.0.28 version graphic tutorial
  • mysql 8.0.28 winx64.zip installation and configuration method graphic tutorial
  • MySQL 8.0.28 installation and configuration tutorial under Windows
  • MySQL 8.0.28 installation and configuration method graphic tutorial
  • MySQL 8.0.27 installation and configuration method graphic tutorial under Windows

<<:  How to understand the difference between ref toRef and toRefs in Vue3

>>:  Solution to overflow of html table

Recommend

Web page text design should be like smart girls wearing clothes

<br />"There are no ugly women in the w...

6 Practical Tips for TypeScript Development

Table of contents 1. Determine the entity type be...

Vue implements horizontal scrolling of marquee style text

This article shares the specific code for Vue to ...

How to set the number of mysql connections (Too many connections)

During the use of mysql, it was found that the nu...

Why should the number of rows in a single MySQL table not exceed 5 million?

Today, let’s discuss an interesting topic: How mu...

Let's talk about the difference between containers and images in Docker

What is a mirror? An image can be seen as a file ...

Vue implements dynamic routing details

Table of contents 1. Front-end control 1. In the ...

A brief discussion on MySQL index optimization analysis

Why are the SQL queries you write slow? Why do th...

Use of TypeScript Generics

Table of contents 1. Easy to use 2. Using generic...

Use of Linux dynamic link library

Compared with ordinary programs, dynamic link lib...

Bundling non-JavaScript static resources details

Table of contents 1. Custom import in packaging t...

Summary of common problems and solutions in Vue (recommended)

There are some issues that are not limited to Vue...