Hibernate中session.getconnection()的替代方法

langgufu314發表於2012-08-27
2010-04-15 10:21

Hibernate中session.connection()的替代方法

Hibernate3.3.2版本中getSession().connection()已被棄用,替代方法SessionFactoryUtils.getDataSource(getSessionFactory()).getConnection()

來自類org.springframework.orm.hibernate3.SessionFactoryUtils

例子:

java.sql.Connection c = null;
java.sql.PreparedStatement ps = null;
java.sql.ResultSet rs = null;

public List method(String sql) {
List ret = new ArrayList();
try {
c = SessionFactoryUtils.getDataSource(getSessionFactory()).getConnection();
ps = c.prepareStatement(sql);
rs = ps.executeQuery();
while(rs.next()) {
.....
}
ret.add(ro);
}
} catch (Exception e) {
e.printStackTrace();

} finally {
close();
}
return ret;
}

Hibernate API中讓使用doWork(Work,work),描述如下:

()
Deprecated. (scheduled for removal in 4.x). Replacement depends on need; for doing direct JDBC stuff use ; for opening a 'temporary Session' use (TBD).

Work介面的execute()方法用於執行直接通過JDBC API來訪問資料庫的操作:
public interface Work {
//直接通過JDBC API來訪問資料庫的操作
public void execute(Connection connection) throws SQLException;
}
Session的doWork(Work work)方法用於執行Work物件指定的操作,即呼叫Work物件的execute()方法。Session會把當前使用的資料庫連線傳給execute()方法。

過程如下:

Transaction tx=session.beginTransaction();
//定義一個匿名類,實現了Work介面
Work work=new Work(){
public void execute(Connection connection)throws SQLException{
//通過JDBC API執行用於批量更新的SQL語句
PreparedStatement stmt=connection
.prepareStatement("update CUSTOMERS set AGE=AGE+1 "
+"where AGE>0 ");
stmt.executeUpdate();
}
};

//執行work
session.doWork(work);
tx.commit();

當通過JDBC API中的PreparedStatement介面來執行SQL語句時,SQL語句中涉及到的資料不會被載入到Session的快取中,因此不會佔用記憶體空間。

相關文章