About the configuration problem of MyBatis connecting to MySql8.0 version

About the configuration problem of MyBatis connecting to MySql8.0 version

When learning mybatis, I encountered an error, the error is as follows:

Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure

Cause:

  • The local database version is MySQL 8.0
  • Import the MySQL jar package version in the pom.xml configuration file as

insert image description here

The error is caused by the inconsistency between the local database version and the jar package version imported into MySQL

Solution:

[1] Install the corresponding version of the database locally. Since I have MySQL 5.6 and MySQL 8.0 installed locally, switching the database to MySQL 5.6 solves the problem.
[2] Modify the pom.xml configuration file, no need to switch the database

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

Supplement: Mybatis connection to mysql8.0 is abnormal

The reference to entity "serverTimezone" must end with the ';' delimiter.

Reference to entity 'serverTimeZone' must end with a ';' delimiter.
The solution is to use & instead in the xml configuration file.
Right now

<property name="jdbcUrl"> jdbc:mysql://localhost:3306/exam?characterEncoding=utf8&amp;serverTimezone=UTC </property>

This is the end of this article about the configuration issues of MyBatis connecting to MySql8.0 version. For more relevant MyBatis connecting to MySql8.0 content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.24 version installation and configuration method graphic tutorial
  • Some improvements in MySQL 8.0.24 Release Note
  • Implementation of MySQL's MVCC multi-version concurrency control
  • The best solution for resetting the root password of MySQL 8.0.23
  • How to solve the problem that Seata cannot use MySQL 8 version
  • Detailed explanation of DBeaver connecting to MySQL version 8 and above and solving possible problems
  • Bugs encountered when using mybatis-generator with mysql8.0.3 in IDEA
  • Solution to the garbled code problem in MySQL 5.x
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Solution to ONLY_FULL_GROUP_BY error in Mysql5.7 and above
  • Solve the installation problem of mysql8.0.19 winx64 version
  • Django 2.2 and PyMySQL version compatibility issues
  • Steps to install MySQL 5.7 in binary mode and optimize the system under Linux
  • Installation of various versions of MySQL 8.0.18 and problems encountered during installation (essence summary)
  • Super detailed teaching on how to upgrade the version of MySQL

<<:  Learn the common methods and techniques in JS arrays and become a master

>>:  XHTML 1.0 Reference

Recommend

Detailed analysis of binlog_format mode and configuration in MySQL

There are three main ways of MySQL replication: S...

Does the website's text still need to be designed?

Many people may ask, does the text on the website...

Introduction to the use of MySQL performance stress benchmark tool sysbench

Table of contents 1. Introduction to sysbench #Pr...

Creative opening effect achieved by combining CSS 3.0 with video

Let me share with you a creative opening realized...

Illustration of the process of using FileZilla to connect to the FTP server

When I first started setting up an ftp server on ...

Native JS to achieve blinds special effects

This article shares a blinds special effect imple...

How to automatically deploy Linux system using PXE

Table of contents Background Configuring DHCP Edi...

The problem of form elements and prompt text not being aligned

Recent projects involve the creation of a lot of ...

Example of how to exit the loop in Array.forEach in js

Table of contents forEach() Method How to jump ou...

Using react-virtualized to implement a long list of images with dynamic height

Table of contents Problems encountered during dev...

How to build a complete samba server in Linux (centos version)

Preface smb is the name of a protocol that can be...

Two ways to start Linux boot service

Table of contents rc.local method chkconfig metho...

Real-time refresh of long connection on Vue+WebSocket page

Recently, the Vue project needs to refresh the da...