Solve the compatibility issue between MySQL 8.0 driver and Alibaba Druid version

Solve the compatibility issue between MySQL 8.0 driver and Alibaba Druid version

This article mainly introduces the solution to the compatibility issue between MySQL 8.0 driver and Alibaba Druid version. The details are as follows:

Notice:

This exception indicates that the version of the druid data source does not match the driver version of MySQL 8.0. The solution is as follows:

Make sure the MySql 8.0 driver is as follows

<dependency>
   <groupId>mysql</groupId>
   <artifactId>mysql-connector-java</artifactId>
   <version>8.0.11</version>
</dependency>

Make sure the druid version is as follows

<dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>druid</artifactId>
   <version>1.1.10</version>
</dependency>

Attached are the driver jar packages of various versions of Druid. The download methods are as follows: https://repo1.maven.org/maven2/com/alibaba/druid/

Refresh POM and update Maven, as shown below:

Then start the project, run:

If you see the following red reminder log, it means that the match has been successful:

Next you can operate the database, but if you haven’t figured out the MySql 8.0 driver and database connection, then read this article.

Notes on matching MySql 8.0 and corresponding driver packages

This is the end of this article about how to solve the compatibility issue between MySQL 8.0 driver and Alibaba druid. For more information about the compatibility between MySQL 8.0 driver and Alibaba druid, 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:
  • Notes on matching MySql 8.0 and corresponding driver packages
  • Summary of Mysql-connector-java driver version issues
  • Detailed explanation of Spring Boot Mysql version-driven connection pool solution selection
  • Brief analysis of the various versions of mysql.data.dll driver

<<:  The most complete and detailed process of installing deepin20 on vmware virtual machine

>>:  Vue globally introduces scss (mixin)

Recommend

JavaScript implements the detailed process of stack structure

Table of contents 1. Understanding the stack stru...

An example of the calculation function calc in CSS in website layout

calc is a function in CSS that is used to calcula...

Key features of InnoDB - insert cache, write twice, adaptive hash index details

The key features of the InnoDB storage engine inc...

Pros and Cons of Vite and Vue CLI

There is a new build tool in the Vue ecosystem ca...

MYSQL stored procedures, that is, a summary of common logical knowledge points

Mysql stored procedure 1. Create stored procedure...

Notes on upgrading to mysql-connector-java8.0.27

Recently, an online security scan found a vulnera...

SQL-based query statements

Table of contents 1. Basic SELECT statement 1. Qu...

Forever+nginx deployment method example of Node site

I recently bought the cheapest Tencent cloud serv...

CSS achieves footer "bottom absorption" effect

We often encounter this problem: how to use CSS t...

Detailed analysis and testing of SSD performance issues in MySQL servers

【question】 We have an HP server. When the SSD wri...

Basic application methods of javascript embedded and external links

Table of contents Basic application of javascript...

Summary of basic usage of js array

Preface Arrays are a special kind of object. Ther...

Detailed explanation of the available environment variables in Docker Compose

Several parts of Compose deal with environment va...

Detailed explanation of HTML style tags and related CSS references

HTML style tag style tag - Use this tag when decl...