测试时不使用 Transaction 就不能入库。环境是 JDK 5 Tomcat 5.5 MySQL 5 MyEclipse 4.1.1
使用 HB 事务的测试代码如下:
使用 HB 事务的测试代码如下:
<%
String testName = "";
Session s = HibernateSessionFactory.currentSession();
Transaction tx = s.beginTransaction();
Resource res = new Resource();
res.setRequestName("abc");
res.setDescription("ddddd");
s.save(res);
tx.commit();
s.close();
%>
String testName = "";
Session s = HibernateSessionFactory.currentSession();
Transaction tx = s.beginTransaction();
Resource res = new Resource();
res.setRequestName("abc");
res.setDescription("ddddd");
s.save(res);
tx.commit();
s.close();
%>