我正在使用hibernate 3.6和MSSQL 2005,2008,2012。
我想设置会话创建的事务的隔离级别,但我找不到有关的任何信息。
这是我的代码
Session sess = factory.openSession();
Transaction tx = null;
try {
tx = sess.beginTransaction();
// do some work
...
tx.commit();
}
catch (RuntimeException e) {
if (tx != null) tx.rollback();
throw e; // or display error message
}
finally {
sess.close();
}
我想要做一些类似的事情
sess.beginTransaction(1|2|4|8);
这可能吗?
谢谢。
答案 0 :(得分:2)
我刚刚发现了一个对我有用的解决方案
if (forceReadCommitted) {
this.session.doWork(new Work() {
@Override
public void execute(Connection connection) throws SQLException {
connection.setTransactionIsolation(2);
}
});
}
但您可以注意到这是针对整个连接而不是针对特定事务。可能还有更好的解决方案。