Solution to the problem that Java cannot connect to MySQL 8.0

Solution to the problem that Java cannot connect to MySQL 8.0

This article shares a collection of Java problems that cannot connect to MySQL 8.0 for your reference. The specific content is as follows

Question 1: Client does not support authentication protocol requested by Server;…

Question 2: Unknown initial character set index '255' received from server…

Question 3: MySQL 8.0 connection necessary URL statement

Problem 4: Duplicate method calls

Run Question 1 :

Solution: (note the semicolon in the 3 sentences, wy123456 is the password of my database)

Question 2:

Solution: (delete duplicate packages)

The import is also deleted, leaving only the correct one:

Then重啟eclipse! The environment will be updated~

Key: MySQL 8.0 needs to add this sentence : ?useSSL=false&serverTimezone=UTC

public static String dbUrl="jdbc:mysql://localhost:3306/websql?useSSL=false&serverTimezone=UTC"; 

Running results:

Question 4:

Solution: (The second connection name must be different)

Running results:

Attach the connection DbUtil class:

package com.cungudafa;

import java.sql.Connection;
import java.sql.DriverManager;

public class DbUtil {
  public static String dbUrl="jdbc:mysql://localhost:3306/websql?useSSL=false&serverTimezone=UTC";
  public static String dbUserName="root";
  public static String dbPassword="wy123456";
  public static String jdbcName="com.mysql.jdbc.Driver";

  public static Connection getCon() throws Exception {
   Class.forName(jdbcName);
   Connection con=DriverManager.getConnection(dbUrl,dbUserName,dbPassword);
    return con;
  }
  public static void closeCon(Connection con) {
    try {
      if (con != null) {
        con.close();
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}

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:
  • Java connects to mysql database code example program
  • Detailed explanation of the underlying encapsulation of Java connection to MySQL
  • Detailed explanation of how to connect Java to Mysql version 8.0.18
  • Java connects to MySQL database to implement single and batch insertion
  • Implementing a student management system based on MySQL in Java
  • Java+MySQL to implement student information management system source code
  • Detailed explanation of dynamically generating Mysql stored procedures in Java Spring

<<:  How to expand the disk partition for centos system

>>:  vue_drf implements SMS verification code

Recommend

How to deploy zabbix_agent in docker

zabbix_agent deployment: Recommendation: zabbix_a...

Sample code for making desktop applications with vue + Electron

1.vue packaging Here we use the vue native packag...

Sublime / vscode quick implementation of generating HTML code

Table of contents Basic HTML structure Generate s...

Vue uses v-model to encapsulate the entire process of el-pagination components

Use v-model to bind the paging information object...

Example of how to increase swap in CentOS7 system

Preface Swap is a special file (or partition) loc...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

Detailed explanation of the marquee attribute in HTML

This tag is not part of HTML3.2 and is only suppo...

How does MySQL ensure data integrity?

The importance of data consistency and integrity ...

How to implement load balancing in MySQL

Preface MySQL is a high-speed, high-performance, ...

webpack -v error solution

background I want to check the webpack version, b...

Detailed explanation of the use of umask under Linux

I recently started learning Linux. After reading ...

Detailed explanation of CSS background and border tag examples

1. CSS background tag 1. Set the background color...

Beginners learn some HTML tags (3)

Related articles: Beginners learn some HTML tags ...

Div exceeds hidden text and hides the CSS code beyond the div part

Before hiding: After hiding: CSS: Copy code The co...

How to use an image button as a reset form button

When we make a form, we often set a submit button ...