Hibernate之配置及簡單使用
阿新 • • 發佈:2018-12-15
Hibernate之配置及使用
理解:
- 框架是用來提高開發效率的
- 封裝了好了一些功能.我們需要使用這些功能時,呼叫即可.不需要再手動實現.
- 所以框架可以理解成是一個半成品的專案.只要懂得如何駕馭這些功能即可.
ORM
object relationg mapping. 物件關係對映
hibernate屬於4級:完全面向物件操作資料庫
導包
資料庫驅動包:
搭配主xml檔案
在src/下建立hibernate.cfg.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- #hibernate.dialect org.hibernate.dialect.MySQLDialect #hibernate.dialect org.hibernate.dialect.MySQLInnoDBDialect #hibernate.dialect org.hibernate.dialect.MySQLMyISAMDialect #hibernate.connection.driver_class com.mysql.jdbc.Driver #hibernate.connection.url jdbc:mysql:///test #hibernate.connection.username gavin #hibernate.connection.password --> <!-- 資料庫驅動 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <!-- 資料庫url --> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernateTest</property> <!-- 資料庫連線使用者名稱 --> <property name="hibernate.connection.username">root</property> <!-- 資料庫連線密碼 --> <property name="hibernate.connection.password">123456789</property> <!-- 資料庫方言 不同的資料庫中,sql語法略有區別. 指定方言可以讓hibernate框架在生成sql語句時.針對資料庫的方言生成. sql99標準: DDL 定義語言 庫表的增刪改查 DCL 控制語言 事務 許可權 DML 操縱語言 增刪改查 注意: MYSQL在選擇方言時,請選擇最短的方言. --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <property name="hibernate.current_session_context_class">thread</property> <!-- #hibernate.show_sql true #hibernate.format_sql true --> <!-- 將hibernate生成的sql語句列印到控制檯 --> <property name="hibernate.show_sql">true</property> <!-- 將hibernate生成的sql語句格式化(語法縮排) --> <property name="hibernate.format_sql">true</property> <!-- ## auto schema export 自動匯出表結構. 自動建表 #hibernate.hbm2ddl.auto create 自動建表.每次框架執行都會建立新的表.以前表將會被覆蓋,表資料會丟失.(開發環境中測試使用) #hibernate.hbm2ddl.auto create-drop 自動建表.每次框架執行結束都會將所有表刪除.(開發環境中測試使用) #hibernate.hbm2ddl.auto update(推薦使用) 自動生成表.如果已經存在不會再生成.如果表有變動.自動更新表(不會刪除任何資料). #hibernate.hbm2ddl.auto validate 校驗.不自動生成表.每次啟動會校驗資料庫中表是否正確.校驗失敗. --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 引入orm元資料 路徑書寫: 填寫src下的路徑 --> <!-- 匯入實體物件資源 --> <mapping resource="/daomain/Customer.hbm.xml" /> </session-factory> </hibernate-configuration>
實體類與該類的xml
public class Customer {
private Long cust_id;
private String cust_name;
private String cust_source;
private String cust_industry;
private String cust_level;
private String cust_linkman;
private String cust_phone;
private String cust_mobile;
......
get與set
Customer.hbm.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <!-- 配置表與實體物件的關係 --> <!-- package屬性:填寫一個包名.在元素內部凡是需要書寫完整類名的屬性,可以直接寫簡答類名了. --> <hibernate-mapping package="cn.itheima.domain" > <!-- class元素: 配置實體與表的對應關係的 name: 完整類名 table:資料庫表名 --> <class name="Customer" table="cst_customer" > <!-- id元素:配置主鍵對映的屬性 name: 填寫主鍵對應屬性名 column(可選): 填寫表中的主鍵列名.預設值:列名會預設使用屬性名 type(可選):填寫列(屬性)的型別.hibernate會自動檢測實體的屬性型別. 每個型別有三種填法: java型別|hibernate型別|資料庫型別 not-null(可選):配置該屬性(列)是否不能為空. 預設值:false length(可選):配置資料庫中列的長度. 預設值:使用資料庫型別的最大長度 --> <id name="cust_id" > <!-- generator:主鍵生成策略(明天講) --> <generator class="native"></generator> </id> <!-- property元素:除id之外的普通屬性對映 name: 填寫屬性名 column(可選): 填寫列名 type(可選):填寫列(屬性)的型別.hibernate會自動檢測實體的屬性型別. 每個型別有三種填法: java型別|hibernate型別|資料庫型別 not-null(可選):配置該屬性(列)是否不能為空. 預設值:false length(可選):配置資料庫中列的長度. 預設值:使用資料庫型別的最大長度 --> <property name="cust_name" column="cust_name" > <!-- <column name="cust_name" sql-type="varchar" ></column> --> </property> <property name="cust_source" column="cust_source" ></property> <property name="cust_industry" column="cust_industry" ></property> <property name="cust_level" column="cust_level" ></property> <property name="cust_linkman" column="cust_linkman" ></property> <property name="cust_phone" column="cust_phone" ></property> <property name="cust_mobile" column="cust_mobile" ></property> </class> </hibernate-mapping>
API詳解
步驟一:建立,呼叫空參構造
Configuration conf = new Configuration().configure()
步驟二:建立SessionFactory工廠
SessionFactory sessionFactory = conf.buildSessionFactory();
步驟三:建立session物件
步驟四:獲取事務