gpt4 book ai didi

Java/JDBC/MySQL : How do I troubleshoot why DriverManager. getConnection() 返回 NULL?

转载 作者:可可西里 更新时间:2023-11-01 07:02:10 25 4
gpt4 key购买 nike

我正在尝试解决使用 JDBC 连接到 MySQL 数据库的 Java 应用程序的问题。表面上的问题是,当连接到一个有效的数据库时,DriverManager.getConnection 有时会返回 NULL,而几分钟后它会返回一个有效的连接到完全相同的数据库。

我正试图解决这个问题,但我对 Java、JDBC 和 MySQL 的交汇点的了解相当有限。我一直在对此进行大量研究,但遇到了瓶颈,不知道从这里该何去何从。

这是我到目前为止所做的:

  • 在 Java 端,我一直跟踪代码到 DriverManager.getConnection()。我已经确定 NULL 连接来自那里,但我不知道 getConnection 背后发生了什么。我一直在努力在网上找到对此的详尽解释。
  • 在 MySQL 端,我已经确认有足够的连接可供我使用(有时大约有 1000 个空闲连接),所以我知道我没有超过那里的最大连接数。查看日志,我能够确定在我遇到最多问题的时间范围内中止的连接数量略多,但我不知道如何确定这些连接被中止的原因(MySQL abort、JDBC、Java 应用程序?)我不确定在 MySQL 端是否还有其他需要查找的内容。
  • 在中间,对于 JDBC,我很迷茫。我一直在阅读 http://dev.mysql.com/doc/refman/5.1/en/connector-j.html 上的 MySQL Connector/J ,但不确定该信息是否与 Java 使用的 JDBC 驱动程序有关。

任何关于我可以从这里去哪里的方向将不胜感激。

谢谢!

编辑 - 2/15, 10:35am CST我很抱歉没有更具体。此应用程序是一个正常工作的生产应用程序。它每天成功处理数万个连接,没有任何问题,只是这个问题会在一天中的随机时间出现,并且在它确实发生时会持续 30 秒到 5 分钟不等。

这是我一直追踪到 DriverManager.getConnection 的代码:

var dbConn = DatabaseConnectionFactory.createDatabaseConnection('com.mysql.jdbc.Driver','jdbc:mysql://'+ serverName +':' + port + '/' + database, userName, password);

public static DatabaseConnection createDatabaseConnection(String driver, String address, String username, String password) throws SQLException {
try {
Class.forName(driver);
} catch (Exception e) {
e.printStackTrace();
}

Properties info = new Properties();
info.setProperty("user", username);
info.setProperty("password", password);

// this property should only be set if it's for embedded database
info.setProperty("shutdown", "true");

return new DatabaseConnection(address, info);
}

public DatabaseConnection(String address, Properties info) throws SQLException {
logger.debug("creating new database connection: address=" + address + ", " + info);
this.address = address;
connection = DriverManager.getConnection(address, info);
}

我认为代码实际上没有任何问题,而是 getConnection() 和 MySQL 之间的某个地方存在问题。

最佳答案

单个驱动程序可以为连接请求返回 null,JDBC 4.1 规范是这样说的:

When the DriverManager is trying to establish a connection, it calls that driver’s connect method and passes the driver the URL. If the Driver implementation understands the URL, it will return a Connection object or throw a SQLException if a connection cannot be maded to the database. If the Driver implementation does not understand the URL, it will return null.

但是,查看 java.sql.DriverManager 的代码(在 Java 7 Update 13 中),它会总是抛出一个 SQLException当所有可用的驱动程序都为 connect(url, properties) 调用返回 null 时,带有消息 No suitable driver found for :

//  Worker method called by the public getConnection() methods.
private static Connection getConnection(
String url, java.util.Properties info, ClassLoader callerCL) throws SQLException {
// Removed some classloading stuff for brevity
if(url == null) {
throw new SQLException("The url cannot be null", "08001");
}
// Walk through the loaded registeredDrivers attempting to make a connection.
// Remember the first exception that gets raised so we can reraise it.
SQLException reason = null;
for(DriverInfo aDriver : registeredDrivers) {
// If the caller does not have permission to load the driver then
// skip it.
if(isDriverAllowed(aDriver.driver, callerCL)) {
try {
println(" trying " + aDriver.driver.getClass().getName());
Connection con = aDriver.driver.connect(url, info);
if (con != null) {
// Success!
println("getConnection returning " + aDriver.driver.getClass().getName());
return (con);
}
} catch (SQLException ex) {
if (reason == null) {
reason = ex;
}
}
} else {
println(" skipping: " + aDriver.getClass().getName());
}
}
// if we got here nobody could connect.
if (reason != null) {
println("getConnection failed: " + reason);
throw reason;
}
println("getConnection: no suitable driver found for "+ url);
throw new SQLException("No suitable driver found for "+ url, "08001");
}

换句话说:您描述的情况不会发生(至少不会在 Java 7 Update 13 中发生)。快速浏览 Java 5 Update 22 源代码会发现几乎相同的实现,只是不能返回 null。

您更有可能吞下一个异常,然后尝试使用值为 null 的 Connection 变量或字段。

另一种可能性是您不是通过 DriverManager.getConnection(url, ...) 获取连接,而是通过 DriverManager.getDriver(url).connect(... ) 由于上面建立的规则,它可以返回 null。如果那是你所做的,如果你总是使用完全相同的 URL,它可能指向 Connector/J 驱动程序中的错误:驱动程序不能在某一点决定返回特定 URL 的连接,然后返回 null。对于同一 URL,它应该始终返回 Connection 或抛出 SQLException

关于Java/JDBC/MySQL : How do I troubleshoot why DriverManager. getConnection() 返回 NULL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14898672/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com