我做了乙個基於小區物業管理系統的關於房屋資訊管理的乙個介面
配置靜態常量**:
public class hibernateutil catch (hibernateexception e) }
public static sessionfactory getsessionfactory()
}
關於house增刪改查的呼叫介面:
public inte***ce housedao
介面的實現類:
public class housedaoimpl implements housedao catch (hibernateexception e)
e.printstacktrace();
} return h;
} @override
public void updatehouse(int hid, house house) catch (hibernateexception e)
e.printstacktrace();
} }@override
public void deletehouse(int hid) catch (hibernateexception e)
e.printstacktrace();
} }@override
public void addhouse(house house) catch (hibernateexception e)
e.printstacktrace();
} }}
測試方法:public class test1
@test
public void testselect()
@test
public void testdel()
@test
public void testupdate()
}
通過介面的呼叫,以及功能的實現都可以對house的資訊進行基本的增刪改查。 Hibernate增刪改查介面
我演示的是乙個書籍管理系統中書籍資訊增刪改查的乙個例項 首先,先配置hibernate環境,這個之前介紹過,這裡就不做詳細介紹了 建立增刪改查介面 public inte ce bookdao具體實現增刪改查的方法 public book selectbook int id catch hibern...
Hibernate入門 增刪改查
一 hibernate入門案例剖析 建立實體類student 並重寫tostring方法 public class student public void setsid integer sid public integer getage public void setage integer age ...
Hibernate (2)增刪改查
案例名稱 hibernate完成增刪改查 案例描述 抽取出工具類並完成刪除 修改 查詢功能。具體過程 1 使用上面的例子 hibernate 1 hibernate入門 2 新建hibernateutils 用於封裝建立session的方法。package com.xsyu.tts.util imp...