Tag: 事务的

为什么我需要在Hibernate中进行只读操作?

为什么我需要在Hibernate中进行只读操作? 以下事务是否对db进行了locking? 从数据库获取的示例代码: Transaction tx = HibernateUtil.getCurrentSession().beginTransaction(); // why begin transaction? //readonly operation here tx.commit() // why tx.commit? I don't want to write anything 我可以使用session.close()而不是tx.commit() ?