php editor Banana brings you a special question and answer about connecting Java to a MySQL database. This article will explain to you how to connect to a MySQL database in a Java application, allowing you to easily master relevant knowledge and improve your programming skills. Whether you are a beginner or an experienced developer, you can find a solution that suits you in this article to make database operations more efficient and convenient. Let’s dive in!
Question content
How to connect to mysql database using java?
When I try, I get
java.sql.sqlexception: no suitable driver found for jdbc:mysql://database/table at java.sql.drivermanager.getconnection(drivermanager.java:689) at java.sql.drivermanager.getconnection(drivermanager.java:247)
or
java.lang.classnotfoundexception: com.mysql.jdbc.driver
or
java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver
Solution
Data source
drivermanager
is a pretty old way of doing things. A better approach is to get the DataSource
object. You can use JNDI to find the application server container that has been configured for you:
context context = new initialcontext(); datasource datasource = (datasource) context.lookup("java:comp/env/jdbc/mydb");
...or instantiate and configure one directly from the database driver, such as com.mysql.cj.jdbc.mysqldatasource
(see documentation):
mysqldatasource datasource = new mysqldatasource(); datasource.setuser("scott"); datasource.setpassword("tiger"); datasource.setservername("mydbhost.example.org");
...and then get the connection from it, same as above:
connection conn = datasource.getconnection(); statement stmt = conn.createstatement(); resultset rs = stmt.executequery("select id from users"); … rs.close(); stmt.close(); conn.close();
In modern java, use the try-with-resources syntax to automatically close jdbc resources (now AutoCloseable
).
try ( connection conn = datasource.getconnection(); statement stmt = conn.createstatement(); resultset rs = stmt.executequery("select id from users"); ) { … }
Here are step-by-step instructions on how to install mysql and jdbc and how to use it:
-
Download and install mysql server. Just do it the usual way. Remember it whenever you change the port number. Default is
3306
. -
Download jdbc driver and put it in the classpath , unzip the zip file and put the included jar file in the classpath. Vendor-specific jdbc drivers are concrete implementations of the JDBC API (tutorial here).
If you are using an IDE such as eclipse or netbeans, you can add the jar file to the classpath by adding it as a library to the Build Path property .
If you do this in the "normal" way in the command console, you need to specify the jar file in the
-cp
or-classpath
parameter when executing the java application path.java -cp .;/path/to/mysql-connector.jar com.example.yourclass
.
just adds the current directory to the classpath so it can findcom.example.yourclass
and;
is the classpath separator because It's in the window. On unix and clones,:
should be used.If you are developing a servlet-based war application and want to manage the connections manually (actually, this is a bad practice), then you need to ensure that the jar ends up in the built
/web-inf/lib
middle. See also How to add JAR libraries to WAR project without facing java.lang.ClassNotFoundException? Classpath vs Build Path vs /WEB-INF/lib. A better approach is to install the physical jdbc driver jar file in the server itself and configure the server to create a jdbc connection pool. Here is an example for tomcat:How should I connect to JDBC database / datasource in a servlet based application? -
Create database in mysql. Let's create a database
javabase
. Of course you want to rule the world, so we use utf-8 as well.create database javabase default character set utf8 collate utf8_unicode_ci;
-
java accesses Create a user, which accesses grant. Simply because using
root
is a bad practice.create user 'java'@'localhost' identified by 'password'; grant all on javabase.* to 'java'@'localhost' identified by 'password';
Yes, here
java
is the username andpassword
is the password. -
Determine jdbc url. To connect to a mysql database using java, you need a jdbc url with the following syntax:
jdbc:mysql://hostname:port/databasename
-
hostname
:安装 mysql 服务器的主机名。如果它安装在运行 java 代码的同一台机器上,那么您可以只使用localhost
。它也可以是 ip 地址,例如127.0.0.1
。如果您遇到连接问题,并且使用127.0.0.1
而不是localhost
解决了该问题,那么您的网络/dns/主机配置有问题。 -
port
:mysql 服务器监听的 tcp/ip 端口。默认情况下为3306
。 -
databasename
:您要连接的数据库的名称。那是javabase
。
所以最终的 url 应如下所示:
jdbc:mysql://localhost:3306/javabase
-
-
Test the connection 使用 java 到 mysql。使用
main()
方法创建一个简单的 java 类来测试连接。string url = "jdbc:mysql://localhost:3306/javabase"; string username = "java"; string password = "password"; system.out.println("connecting database ..."); try (connection connection = drivermanager.getconnection(url, username, password)) { system.out.println("database connected!"); } catch (sqlexception e) { throw new illegalstateexception("cannot connect the database!", e); }
如果您收到
sqlexception: no合适的驱动程序
,则意味着 jdbc 驱动程序根本没有自动加载,或者 jdbc url 错误(即,任何加载的驱动程序都无法识别它)。另请参见 The infamous java.sql.SQLException: No suitable driver found。通常,当您将 jdbc 4.0 驱动程序放入运行时类路径中时,应该会自动加载它。要排除其中一个或另一个,您可以随时手动加载它,如下所示:System.out.println("Loading driver ..."); try { Class.forName("com.mysql.cj.jdbc.Driver"); // Use com.mysql.jdbc.Driver if you're not on MySQL 8+ yet. System.out.println("Driver loaded!"); } catch (ClassNotFoundException e) { throw new IllegalStateException("Cannot find the driver in the classpath!", e); }
请注意,此处不需要调用
newinstance()
。对于mysql,只是为了修复旧的且有缺陷的org.gjt.mm.mysql.driver
。 Explanation here。如果此行抛出classnotfoundexception
,则说明包含 jdbc 驱动程序类的 jar 文件根本没有放置在类路径中。另请注意,抛出异常非常重要,以便立即阻止代码执行,而不是仅仅打印堆栈跟踪然后继续执行其余代码来抑制它。另请注意,您不需要每次在连接之前加载驱动程序。只需在应用程序启动期间一次就足够了。
如果您收到
sqlexception: 连接被拒绝
或connection timed out
或 mysql 特定的communicationsexception: 通信链路故障
,则意味着数据库根本无法访问。这可能由以下一个或多个原因造成:- jdbc url 中的 ip 地址或主机名错误。
- 本地 dns 服务器无法识别 jdbc url 中的主机名。
- jdbc url 中的端口号缺失或错误。
- 数据库服务器已关闭。
- 数据库服务器不接受 tcp/ip 连接。
- 数据库服务器已耗尽连接。
- java 和 db 之间的某些东西正在阻塞连接,例如防火墙或代理。
要解决其中一个问题,请遵循以下建议:
- 使用
ping
验证并测试它们。 - 刷新 dns 或在 jdbc url 中使用 ip 地址。
- 根据mysql db的
my.cnf
进行验证。 - 启动数据库。
- 验证 mysqld 是否在没有
--skip-networking 选项
的情况下启动。 - 重新启动数据库并相应地修复代码,使其关闭
finally
中的连接。 - 禁用防火墙和/或配置防火墙/代理以允许/转发端口。
请注意,关闭
connection
极其非常重要。如果您不关闭连接并在短时间内不断获取大量连接,那么数据库可能会耗尽连接,并且您的应用程序可能会崩溃。始终获取try-with-resources
statement 中的connection
。这也适用于statement
、preparedstatement
和resultset
。另见How often should Connection, Statement and ResultSet be closed in JDBC?
这就是连接问题。您可以在 here 找到更高级的教程,了解如何借助基本 dao 类在数据库中加载和存储完整的 java 模型对象。
对数据库 connection
使用单例模式和/或 static
变量是一种不好的做法。参见其他 Is it safe to use a static java.sql.Connection instance in a multithreaded system? 这是第一个初学者错误。确保您不会落入这个陷阱。
The above is the detailed content of Connect Java to MySQL database. For more information, please follow other related articles on the PHP Chinese website!

我有一个可与Postgres数据库配合使用的JavaSpringBoot应用程序。我想对它们都使用Docker。我最初只将Postgres放入Docker中,并且有一个docker-compose.yml文件,定义如下:version:'2'services:db:container_name:sample_dbimage:postgres:9.5volumes:-sample

在今天的软件开发领域,Java作为一种广泛应用的编程语言,有着很高的开发效率和便捷性。为了提高开发效率,拥有一个优秀的Java编程环境是至关重要的。本文将为大家推荐几款必备的Java编程软件,帮助打造一个高效的开发环境。EclipseEclipse是一款功能强大且广泛使用的Java集成开发环境(IDE)。它提供了丰富的功能和插件,支持Java项目的开发、调试

Kafka消息队列的底层实现原理概述Kafka是一个分布式、可扩展的消息队列系统,它可以处理大量的数据,并且具有很高的吞吐量和低延迟。Kafka最初是由LinkedIn开发的,现在是Apache软件基金会的一个顶级项目。架构Kafka是一个分布式系统,由多个服务器组成。每个服务器称为一个节点,每个节点都是一个独立的进程。节点之间通过网络连接,形成一个集群。K

Java编程语言被广泛应用于各种软件开发领域,因其跨平台性能和可靠性而备受开发者青睐。然而,要进行Java编程,我们需要选择一款优秀的Java编程软件。本文就从入门到精通,推荐几款优秀的Java编程软件,帮助读者选择适合自己的工具。Eclipse(EclipseIDE)Eclipse是一个非常流行的开源集成开发环境(IDE)。它提供了强大的编辑器、调试器

当我在浏览器中访问urlapi时,屏幕上出现此错误:不支持请求方法“get”我想要的是当我直接在浏览器中访问网址时完全消除此错误。我尝试创建异常处理程序逻辑来捕获错误并显示空白文本,但它不起作用这是我的代码:importorg.springframework.http.HttpStatus;importorg.springframework.http.ResponseEntity;importorg.springframework.web.bind.annotation.Cont

在Debian系统中,安装Java和JDK(JavaDevelopmentKit)是一项相对简单的任务,本文将为您提供详细的步骤和注意事项,以帮助您顺利完成安装。安装Java1.打开终端:您可以通过按下Ctrl+Alt+T组合键来打开终端。2.更新软件包列表:在终端中输入以下命令,并按Enter键执行:```sqlsudoapt-getupdate```3.安装Java运行时环境(JRE):在终端中输入以下命令,并按Enter键执行:```arduinosudoapt-getinstalldef

JVM内存参数设置:如何优化Java应用的性能?引言:在Java应用程序开发中,优化性能是一个非常重要的任务。而对Java虚拟机(JVM)的内存参数进行合理的设置,可以有效地提升应用程序的性能。本文将介绍一些常用的JVM内存参数,并给出具体的代码示例,帮助读者更好地理解如何优化Java应用的性能。一、JVM内存参数的重要性JVM是Java应用程序的运行环境,

Java是一种常用的编程语言,广泛应用于软件开发和互联网应用领域。作为一名Java开发者,了解Java的职责和工作范围对于提高自己的技能和实施工作任务非常重要。首先,Java开发者的主要职责是设计和编写高质量的Java代码。他们要根据项目需求和规格书设计、开发和测试Java应用程序。这包括编写清晰、可读性强的代码,使用Java语法和规范。Java开发者还需要

Hot AI Tools

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

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

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
