我正在构建一个基本的Java应用程序以将某些文件加载到mysql数据库中。我能够加载文件并填充表格而不会出现任何问题。但是,在与检查了我的代码的人交谈之后,我显然没有正确关闭我的连接并浪费了资源。我在哪里不关闭连接?我做错了吗?
我正在使用我的 DbSinger 类中的try-with-resources构造对我的数据库执行准备好的语句,只要实现了AutoCloseable接口,它就会自动关闭连接。在 Db 的父类中。但是,从未达到 close()方法。 DbSinger 在我的 main()中实例化,然后使用ArrayList为 Singer 的单个方法 populateSingers()运行>对象。
连接类别
public class SQLConnection {
private static final String servername = "localhost";
private static final int port = 3306;
private static final String user = "ng_user";
private static final String pass = "ng";
private static final String db = "ng_music";
private static final String connectionString = "jdbc:mysql://" + servername + ":" + port + "/" + db;
public Connection provide() {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
return DriverManager.getConnection(connectionString, user, pass);
}
catch (SQLException | ClassNotFoundException e) {
throw new SQLConnectionException(e);
}
}
public class SQLConnectionException extends RuntimeException {
SQLConnectionException(Exception e) {super(e);}
}
}
抽象父类
public abstract class Db implements AutoCloseable{
private Connection connection;
Db() {
SQLConnection sqlC = new SQLConnection();
this.connection = sqlC.provide();
}
@Override
public synchronized void close() throws SQLException {
if(connection != null) {
connection.close();
connection = null;
System.out.println("Connection closed");
}
}
Connection getConnection() {
return connection;
}
boolean checkIfPopulated(String query){
try {
PreparedStatement ps = getConnection().prepareStatement(query);
ResultSet rs = ps.executeQuery();
return !rs.next();
} catch (SQLException e) {
e.printStackTrace();
}
return true;
}
}
具体类,以执行针对歌手表的数据库查询
public class DbSinger extends Db {
public DbSinger() {
super();
}
public void populateSingers(ArrayList<Singer> singers) {
String populateSingersQuery = "insert into ng_singers(name, dob, sex) values(?,?,?)";
if(!checkIfPopulated("select * from ng_singers")){
System.out.println("Singer Table is already populated");
return;
}
try (PreparedStatement ps = getConnection().prepareStatement(populateSingersQuery)) {
for (Singer s : singers) {
ps.setString(1, s.getName());
ps.setDate(2, java.sql.Date.valueOf(s.getDob()));
ps.setString(3, s.getSex());
ps.addBatch();
}
ps.executeBatch();
System.out.println("Singers added to table");
} catch (SQLException e) {
e.printStackTrace();
}
}
}
我的代码能够执行并且可以正常运行,但是我想了解为什么不关闭连接的原因和位置,并了解如何解决此问题。或者至少了解我是否正在解决这个错误。
答案 0 :(得分:0)
您的代码是旧方法。而且您确实需要手动关闭。但是,对于Java 8,您可以像下面这样使用try with resource
try (Connection conn = ds.getConnection();
Statement stmt = conn.createStatement()) {
try {
stmt.execute(dropsql);
} catch (Exception ignore) {} // ignore if table not dropped
stmt.execute(createsql);
stmt.execute(insertsql);
try (ResultSet rs = stmt.executeQuery(selectsql)) {
rs.next();
} catch (Exception e2) {
e2.printStackTrace();
return("failed");
}
} catch(Exception e) {
e.printStackTrace();
return("failed");
}
答案 1 :(得分:0)
在您的情况下,您需要在try-with-resources
语句中实例化DBSinger类以关闭基础连接。
代替:
DbSinger dbSinger = new DbSinger();
您需要这样做:
try (DbSinger dbSinger = new DbSinger()) {
// Your other code
}
这样,将自动调用您在close()
类中重写的Db
方法。
此外,通过以下方法关闭在preparedStatement
方法中创建的checkIfPopulated
:
try (PreparedStatement ps = getConnection().prepareStatement(query)) {
// Other codes
}