如何集成创建/接收连接,查询数据库以及可能使用Java 7的自动资源管理(try-with-resources语句)处理结果的常用JDBC习惯用法? (Tutorial)
在Java 7之前,通常的模式是这样的:
Connection con = null;
PreparedStatement prep = null;
try{
con = getConnection();
prep = prep.prepareStatement("Update ...");
...
con.commit();
}
catch (SQLException e){
con.rollback();
throw e;
}
finally{
if (prep != null)
prep.close();
if (con != null)
con.close();
}
使用Java 7,您可以选择:
try(Connection con = getConnection(); PreparedStatement prep = con.prepareConnection("Update ..."){
...
con.commit();
}
这会关闭Connection
和PreparedStatement
,但是回滚呢?我无法添加包含回滚的catch子句,因为该连接仅在try块中可用。
您是否仍然在try块之外定义连接?这里的最佳做法是什么,尤其是在使用连接池的情况下?
答案 0 :(得分:39)
try(Connection con = getConnection()) {
try (PreparedStatement prep = con.prepareConnection("Update ...")) {
//prep.doSomething();
//...
//etc
con.commit();
} catch (SQLException e) {
//any other actions necessary on failure
con.rollback();
//consider a re-throw, throwing a wrapping exception, etc
}
}
根据oracle documentation,您可以将try-with-resources块与常规try块结合使用。 IMO,上面的例子捕获了正确的逻辑,即:
在java 6及更早版本中,我会使用三层嵌套的try块(外部try-finally,中间try-catch,内部try-finally)来完成此操作。 ARM语法确实可以解决这个问题。
答案 1 :(得分:4)
IMO,在try-catch之外声明Connection和PreparedStatement是这种情况下最好的方法。
答案 2 :(得分:2)
如果要在事务中使用池化连接,则应以这种方式使用它:
try (Connection conn = source.getConnection()) {
conn.setAutoCommit(false);
SQLException savedException = null;
try {
// Do things with connection in transaction here...
conn.commit();
} catch (SQLException ex) {
savedException = ex;
conn.rollback();
} finally {
conn.setAutoCommit(true);
if(savedException != null) {
throw savedException;
}
}
} catch (SQLException ex1) {
throw new DataManagerException(ex1);
}
此示例代码处理设置自动提交值。