<property name="hibernate.show_sql">false</property>
<mapping resource="Cat.hbm.xml"/>
</session-factory>
</hibernate-configuration>
5) 然后还需要提供一个类来测试一下创建,更新,删除和查询Cat,对于熟悉JUnit的开发人员,可以创建一个单元测试类来进行测试,如下:
import junit.framework.TestCase;
import net.sf.hibernate.HibernateException;
import net.sf.hibernate.Session;
import net.sf.hibernate.Transaction;
import net.sf.hibernate.cfg.Configuration;
public class CatTest extends TestCase {
private Session session;
private Transaction tx;
protected void setUp() throws Exception {
Configuration cfg = new Configuration().configure();////注意这一行,这是本文重点讨论研究的地方。
session = cfg.buildSessionFactory().openSession();
tx = session.beginTransaction();
}
protected void tearDown() throws Exception {
tx.commit();
session.close();
}
public void testCreate() {
//请在此方法内添加相关的代码,本文不讨论怎么样使用Hibernate API。
}
public void testUpdate() {
//请在此方法内添加相关的代码,本文不讨论怎么样使用Hibernate API。
}
public void testDelete() {
//请在此方法内添加相关的代码,本文不讨论怎么样使用Hibernate API。
}
public void testQuery() {
//请在此方法内添加相关的代码,本文不讨论怎么样使用Hibernate API。
}
}
2、new Configuration()都做了什么?
对于第一次使用hibernate的新手来说,下面的这段代码可以说是最常见的使用Configuration方式。
文章来源于领测软件测试网 https://www.ltesting.net/