Hibernate系列4-----之删除
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate系列4-----之删除相关的知识,希望对你有一定的参考价值。
1.和它的增改查兄弟不同,多了个until包定义了HibernateUntil类,让我们来一起看看吧
1 public class HibernateUntil { 2 private static Configuration cfg=new Configuration().configure(); 3 private static SessionFactory factory=cfg.buildSessionFactory(); 4 5 //1.方法返回session 静态成员变量不能直接使用非静态成员 6 //Session依赖于Session工厂,工厂依赖于Configure 7 public static Session getSession(){ 8 return factory.openSession(); 9 10 } 11 //2.关闭session 12 public static void closeSession(){ 13 getSession().close(); 14 }
这里也考察了一个知识点静态变量与非静态变量 要想学好就得把基础打好!
2.接下来我们来写一下测试类
1 @Test 2 public void testhibernate() { 3 deleteStudent();//删除学生 4 }
1 private void deleteStudent() { 2 Session session= HibernateUntil.getSession(); 3 Student student=new Student(); 4 student.setSid(2); 5 //开启事务 6 Transaction tx=session.beginTransaction(); 7 session.delete(student); 8 tx.commit(); 9 HibernateUntil.closeSession(); 10 System.out.println("success ok"); 11 }
恩,Hibernate系列增删改查就此结束,感谢同行们的阅览哈!
以上是关于Hibernate系列4-----之删除的主要内容,如果未能解决你的问题,请参考以下文章
SpringSpring系列6之Spring整合Hibernate