


How many ways does java have to connect to mysql? What are the differences?
Nov 23, 2020 pm 03:33 PMThere are five ways to connect java to mysql, which are:
(Learning video sharing: java teaching video)
The first way: encapsulate the username and password in the Properties class
First of all, there is no doubt about importing the database connection package. Create a jdbc driver dirver. Save the url of the database (taking MySQL as an example) in the created string url. If the mysql version is lower than 8.0, the url saving form should be:
String?url?=?"jdbc:mysql://localhost:3306/test"
If the mysql version is 8.0 or above, the url saving form is:
String?url?=?"jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai";
The mysql version used here is 8.0, So the time zone is added at the end, otherwise the default is UTC time zone, which is 8 hours later than Beijing time.
Then encapsulate the user and password corresponding to the mysql database in the Properties class, and finally create the database connection through the Connection class. The source code is as follows:
Driver?driver?=?new?com.mysql.jdbc.Driver(); ????????String?url?=?"jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; ????????/* ????????將用戶名和密碼封裝在Properties中 ?????????*/ ????????Properties?info?=?new?Properties(); ????????info.setProperty("user","root"); ????????info.setProperty("password","ab20010322"); ????????Connection?conn?=?driver.connect(url,info); ????????System.out.println(conn);
The second method: in Based on the first method, use reflection to realize the driver
. Change the first method:
Driver?driver?=?new?com.mysql.jdbc.Driver();
to:
Class?clazz?=?Class.forName("com.mysql.jdbc.Driver"); Driver?driver?=?(Driver)?clazz.newInstance();
relative to the first method. Two methods have the same functions, but the second method uses reflection to implement the driver, which avoids the use of third-party interfaces and makes the code more portable. The source code of the second method is as follows:
?/* ????????使用反射獲取Driver類實例 ????????與Driver?driver?=?new?com.mysql.jdbc.Driver()功能相同,只是不適用第三方接口,使得程序具有更好的可移植性 ?????????*/ ????????Class?clazz?=?Class.forName("com.mysql.jdbc.Driver"); ????????Driver?driver?=?(Driver)?clazz.newInstance(); ????????/* ????????提供要連接的數(shù)據(jù)庫 ?????????*/ ????????String?url?=?"jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; ????????/* ????????提供需要的用戶名和密碼 ?????????*/ ????????Properties?info?=?new?Properties(); ????????info.setProperty("user","root"); ????????info.setProperty("password","ab20010322"); ????????Connection?connection?=?driver.connect(url,info); ????????System.out.println(connection);
The third method: Use DriveManager(classs) instead of Drive
The source code is as follows:
????????Class?clazz?=?Class.forName("com.mysql.jdbc.Driver"); ????????Driver?driver?=?(Driver)?clazz.newInstance(); ????????/* ????????提供連接信息 ?????????*/ ????????String?url?=?"jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; ????????String?user?=?"root"; ????????String?password?=?"ab20010322"; ????????/* ????????注冊驅(qū)動 ?????????*/ ????????DriverManager.registerDriver(driver); ????????/* ????????獲取連接 ?????????*/ ????????System.out.println(DriverManager.getConnection(url,user,password));
The fourth method: Hide the driver loading method
Change the
Driver?driver?=?(Driver)?clazz.newInstance(); DriverManager.registerDriver(driver);
in the third method to
Class.forName("com.mysql.jdbc.Driver");
In this way, you can change the driver loading status Hidden
The source code is as follows:
????????String?url?=?"jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"; ????????String?user?=?"root"; ????????String?password?=?"ab20010322"; ????????/* ????????加載Driver ?????????*/ ????????Class.forName("com.mysql.jdbc.Driver");//????????Driver?driver?=?(Driver)?clazz.newInstance();//????????DriverManager.registerDriver(driver); ????????/* ????????獲取連接 ?????????*/ ????????System.out.println(DriverManager.getConnection(url,user,password));
Method 5: Put the basic information required by the database in the jdbc.properties configuration file
For the above four connection methods , all exposing database information. It is not safe to do so. In this regard, we should put the basic information needed by the database in the jdbc.properties configuration file, and then read it out through InputStream. This is safe and our most commonly used database connection method
The configuration file jdbc.properties is as follows:
user=root password=123456url=jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Shanghai Driver=com.mysql.cj.jdbc.Driver
Note:
1. The configuration file should be placed in the src folder Next
2. Use your own database username and password for user and password
3. If you are using mysql8.0 or above, you should add the time zone at the end when configuring the url file, otherwise An error will be reported
The source code is as follows:
????????InputStream?inputStream?=?ConnectionTest.class.getClassLoader().getResourceAsStream("jdbc.properties"); ????????Properties?info?=?new?Properties(); ????????info.load(inputStream); ???????? ????????String?user?=??info.getProperty("user"); ????????String?password?=?info.getProperty("password"); ????????String?url?=?info.getProperty("url"); ????????String?driver?=?info.getProperty("Driver"); ????????/* ????????加載驅(qū)動 ?????????*/ ????????Class.forName(driver); ????????/* ????????獲取連接 ?????????*/ ????????Connection?conn?=?DriverManager.getConnection(url,user,password); ????????System.out.println(conn);
Related recommendations:java introductory tutorial
The above is the detailed content of How many ways does java have to connect to mysql? What are the differences?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

The settings.json file is located in the user-level or workspace-level path and is used to customize VSCode settings. 1. User-level path: Windows is C:\Users\\AppData\Roaming\Code\User\settings.json, macOS is /Users//Library/ApplicationSupport/Code/User/settings.json, Linux is /home//.config/Code/User/settings.json; 2. Workspace-level path: .vscode/settings in the project root directory

To correctly handle JDBC transactions, you must first turn off the automatic commit mode, then perform multiple operations, and finally commit or rollback according to the results; 1. Call conn.setAutoCommit(false) to start the transaction; 2. Execute multiple SQL operations, such as INSERT and UPDATE; 3. Call conn.commit() if all operations are successful, and call conn.rollback() if an exception occurs to ensure data consistency; at the same time, try-with-resources should be used to manage resources, properly handle exceptions and close connections to avoid connection leakage; in addition, it is recommended to use connection pools and set save points to achieve partial rollback, and keep transactions as short as possible to improve performance.

DependencyInjection(DI)isadesignpatternwhereobjectsreceivedependenciesexternally,promotingloosecouplingandeasiertestingthroughconstructor,setter,orfieldinjection.2.SpringFrameworkusesannotationslike@Component,@Service,and@AutowiredwithJava-basedconfi

TheJVMenablesJava’s"writeonce,runanywhere"capabilitybyexecutingbytecodethroughfourmaincomponents:1.TheClassLoaderSubsystemloads,links,andinitializes.classfilesusingbootstrap,extension,andapplicationclassloaders,ensuringsecureandlazyclassloa

Use classes in the java.time package to replace the old Date and Calendar classes; 2. Get the current date and time through LocalDate, LocalDateTime and LocalTime; 3. Create a specific date and time using the of() method; 4. Use the plus/minus method to immutably increase and decrease the time; 5. Use ZonedDateTime and ZoneId to process the time zone; 6. Format and parse date strings through DateTimeFormatter; 7. Use Instant to be compatible with the old date types when necessary; date processing in modern Java should give priority to using java.timeAPI, which provides clear, immutable and linear

The core methods for realizing MySQL data blood ties tracking include: 1. Use Binlog to record the data change source, enable and analyze binlog, and trace specific business actions in combination with the application layer context; 2. Inject blood ties tags into the ETL process, and record the mapping relationship between the source and the target when synchronizing the tool; 3. Add comments and metadata tags to the data, explain the field source when building the table, and connect to the metadata management system to form a visual map; 4. Pay attention to primary key consistency, avoid excessive dependence on SQL analysis, version control data model changes, and regularly check blood ties data to ensure accurate and reliable blood ties tracking.

Networkportsandfirewallsworktogethertoenablecommunicationwhileensuringsecurity.1.Networkportsarevirtualendpointsnumbered0–65535,withwell-knownportslike80(HTTP),443(HTTPS),22(SSH),and25(SMTP)identifyingspecificservices.2.PortsoperateoverTCP(reliable,c

Pre-formanceTartuptimeMoryusage, Quarkusandmicronautleadduetocompile-Timeprocessingandgraalvsupport, Withquarkusoftenperforminglightbetterine ServerLess scenarios.2.Thyvelopecosyste,
