hibernate入門筆記 1

2021-04-13 12:13:57 字數 688 閱讀 5917

day1 

hibernate資料持久化元件

hibernate.cfg.xml中會設定資料庫的連線資訊,以及引用的其他檔案的檔名,和一些其他的攝製。這個檔案一般放在專案的根目錄下。

在hibernate.cfg.xml的寫法

hibernate的對映類的***x.hbm.xml的寫法

使用hibernate程式設計步驟

1,配置環境,載入hibernate的jar檔案,以及連線資料庫連線使用的jar檔案,並配置classpath環境變數。

2,寫hibernate所需的配置檔案,hibernate.cfg.xml ,***xx.hbm.xml

3,寫pojo類

4,呼叫hibernate api。

1)使用configuration物件的buildsessionfactory()方法建立sessionfactory物件

2)使用sessionfactory物件opensession()方法建立session物件。

3)使用session的相應方法來運算元據庫,將物件資訊持久化到資料庫。

Hibernate學習筆記(1)

1.orm 2.hibernate的開發步驟 1.建立hibernate的配置檔案hibernate.cfg.xml 2.建立持久化類,比如 cat.class 3.建立物件 關係對映檔案cat.hbm.xml 要配置到hibernate.cfg.xml中 現在也有很多人用註解 4.編寫訪問資料庫的...

Hibernate入門 入門案例

4.1 資料庫建立表 create table cst customer cust id bigint 32 not null auto increment comment 客戶編號 主鍵 cust name varchar 32 not null comment 客戶名稱 公司名稱 cust so...

Hibernate之初入門

hibernate基礎 首先解釋持久化 persistence 即把資料 如記憶體中的物件 儲存到可永久儲存的儲存裝置中 如磁碟 持久化的主要應用是將記憶體中的物件儲存在關係型的資料庫中,當然也可以儲存在磁碟檔案中 xml資料檔案中等等。從另乙個角度看hibernate是乙個 物件關係對映 框架,當...