1 實體類(稱為 持久化類)
(1)有類和資料庫表進行對應關係,不需要直接運算元據庫表,操作實體類物件就可以了,這個類稱為實體類
2 實體類編寫規則
(1)實體類屬性私有的
(2)私有屬性有公開的get和set方法
(3)有公開無參構造方法
(4)要求實體類裡面有乙個屬性和表裡面主鍵對應
(5)建議:不要使用final修飾
(6)建議:要使用基本資料型別對應包裝類
3 為什麼使用包裝類
(1)使用包裝類之後更準確表示資料
(2)byte short int long float double char boolean
* int---integer char---character ,其他是首字母大寫 double – double
(3)舉例說明
* 比如表示學生分數 int score = 5; 表示學生得了0分int score = 0;
** 表示學生沒有參加考試int score = -1;
* 使用包裝類 integer score = 5; 學生得了0分integer score = 0;
** 表示學生沒有參加考試integer score = null;
Hibernate 實體類註解
hibernate註解 1。entity name entityname 必須,name為可選,對應資料庫中一的個表 2 table name catalog schema 可選,通常和 entity配合使用,只能標註在實體的class定義處,表示實體對應的資料庫表的資訊 name 可選,表示表的名...
hibernate實體類配置詳解
hibernate註解 1。entity name entityname 必須,name為可選,對應資料庫中一的個表 2 table name catalog schema 可選,通常和 entity配合使用,只能標註在實體的class定義處,表示實體對應的資料庫表的資訊 name 可選,表示表的名...
model實體類中Hibernate註解說明
hibernate註解 1。entity name entityname 必須,name為可選,對應資料庫中一的個表 2 table name catalog schema 可選,通常和 entity配合使用,只能標註在實體的class定義處,表示實體對應的資料庫表的資訊 name 可選,表示表的名...