Java与MySQL的高可用性(High Availability, HA)是指系统能够在部分组件发生故障时,仍然能够持续提供服务的能力。对于Java应用来说,这意味着即使应用服务器或数据库服务器出现故障,用户也不会感知到服务中断。对于MySQL数据库,高可用性通常通过复制、集群等技术来实现。
以下是一个简单的Java代码示例,展示如何使用JDBC连接MySQL数据库,并处理可能的异常情况:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class MySQLConnectionExample {
private static final String URL = "jdbc:mysql://localhost:3306/mydatabase";
private static final String USER = "username";
private static final String PASSWORD = "password";
public static void main(String[] args) {
Connection connection = null;
try {
// 加载MySQL JDBC驱动
Class.forName("com.mysql.cj.jdbc.Driver");
// 建立数据库连接
connection = DriverManager.getConnection(URL, USER, PASSWORD);
System.out.println("Connected to the database!");
} catch (ClassNotFoundException e) {
System.err.println("MySQL JDBC driver not found!");
e.printStackTrace();
} catch (SQLException e) {
System.err.println("Failed to connect to the database!");
e.printStackTrace();
} finally {
// 关闭数据库连接
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
System.err.println("Failed to close the database connection!");
e.printStackTrace();
}
}
}
}
}
领取专属 10元无门槛券
手把手带您无忧上云