0

如何在不同的表中同时使用 Hibernate Transaction?

4

1 回答 1

0

你开始一个事务,用尽可能多的实体做你想做的一切,然后提交事务,如文档中所示

// Non-managed environment idiom with getCurrentSession()
try {
    factory.getCurrentSession().beginTransaction();

    // do some work
    ...

    factory.getCurrentSession().getTransaction().commit();
}
catch (RuntimeException e) {
    factory.getCurrentSession().getTransaction().rollback();
    throw e; // or display error message
}
于 2012-11-23T08:42:36.523 回答