Hibernate的CURD操作
生活随笔
收集整理的這篇文章主要介紹了
Hibernate的CURD操作
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、保存:Session的save方法
@Testpublic void testSave() {Customer c = new Customer();c.setCustName("測試");Session s = HibernateUtils.openSession();Transaction t = s.beginTransaction();s.save(c);t.commit();s.close();}2、查詢:Session的get()方法
@Testpublic void testFindOne() {Session s = HibernateUtils.openSession();Transaction t = s.beginTransaction();Customer c = s.get(Customer.class, 2L);System.out.println(c);t.commit();s.close();}3、修改:Session的update()方法
@Testpublic void testUpdate() {Session s = HibernateUtils.openSession();Transaction t = s.beginTransaction();Customer c = s.get(Customer.class, 2L);c.setCustAddress("110");s.update(c);t.commit();s.close();}4、刪除:Session的delete()方法
@Testpublic void testDelete() {Session s = HibernateUtils.openSession();Transaction t = s.beginTransaction();Customer c = s.get(Customer.class, 2L);s.delete(c);t.commit();s.close();}5、查詢全部:Session的createSQLQuery()方法
@Testpublic void testFindAll() {Session s = HibernateUtils.openSession();Transaction t = s.beginTransaction();SQLQuery sqlQuery = s.createSQLQuery("select * from cst_customer");List list = sqlQuery.list();for(Object o : list) {System.out.println(o);}t.commit();s.close();}總結
以上是生活随笔為你收集整理的Hibernate的CURD操作的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 特斯拉价格多少钱一辆啊?
- 下一篇: 固原看无精症最好的医院推荐