Detailed explanation of how to connect to MySQL database using Java in IntelliJ IDEA

Detailed explanation of how to connect to MySQL database using Java in IntelliJ IDEA

1. Download MySQL database and install and configure it

Download address: https://dev.mysql.com/downloads/installer/

insert image description here

2. Download the JDBC Connector

Download address: mysql-connector-java-8.0.22

insert image description here
insert image description here

After downloading the compressed package and decompressing it, find the mysql-connector-java-8.0.22.jar file and put it in the path you specified.

3. Import jar package into the project

insert image description here

Test class Test.java code for testing database connection:

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

public class Test {
  public static void main(String[] args) {
    String driverName = "com.mysql.cj.jdbc.Driver";
    
    String dbURL="jdbc:mysql://localhost:3306/websql?&useSSL=false&serverTimezone=Asia/Shanghai"; //websql is the database name String userName = "root";
    
    String userPwd = "root";
    
    try {
      Class.forName(driverName);
      
      Connection con = DriverManager.getConnection(dbURL, userName, userPwd);
      
      System.out.println("Connecting to database successfully");
      
    } catch (Exception e) {

      e.printStackTrace();

      System.out.print("Connection failed");

    }
  }

}

This is the end of this article about how to use Java to connect to MySQL database in IntelliJ IDEA. For more information about how to use Java to connect to MySQL database in IntelliJ IDEA, 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:
  • How to connect to database in IDEA
  • Five ways to use JDBC to connect to the database in Java (IDEA version)
  • Detailed steps to use IDEA to configure Tomcat and connect to MySQL database (JDBC)
  • JDBC-idea import mysql to connect java jar package (mac)
  • Java-based MAC system IDEA connects to MYSQL database JDBC process

<<:  In-depth understanding of the creation and implementation of servlets in tomcat

>>:  vue+element-ui implements the head navigation bar component

Recommend

Detailed explanation of Javascript string methods

Table of contents String length: length charAt() ...

How to convert MySQL horizontally to vertically and vertically to horizontally

Initialize Data DROP TABLE IF EXISTS `test_01`; C...

How to change MySQL character set utf8 to utf8mb4

For MySQL 5.5, if the character set is not set, t...

Implementation of MYSQL (telephone number, ID card) data desensitization

1. Data desensitization explanation In daily deve...

Detailed steps to install web server using Apache httpd2.4.37 on centos8

Step 1: yum install httpd -y #Install httpd servi...

Interviewers often ask questions about React's life cycle

React Lifecycle Two pictures to help you understa...

Use viewport in meta tag to define screen css

<meta name="viewport" content="w...

Detailed steps to upgrade mysql8.0.11 to mysql8.0.17 under win2008

Upgrade background: In order to solve the vulnera...

Add ?v= version number after js or css to prevent browser caching

Copy code The code is as follows: <span style=...

Detailed explanation of the solution to forget the password in MySQL 5.7

ENV: [root@centos7 ~]# uname -r 3.10.0-514.el7.x8...

Detailed process analysis of docker deployment of snail cinema system

Environmental Statement Host OS: Cetnos7.9 Minimu...

JS array deduplication details

Table of contents 1 Test Cases 2 JS array dedupli...

WML tag summary

Structure related tags ---------------------------...