您好,登錄后才能下訂單哦!
一、hiobernate核心類和接口預覽圖
二、hibernate.properties
這個文件是以前老版本使用的 類似于hibernate.cfg.xml文件;作用和hibernate.cfg.xml一致.
三、hibernate.cfg.xml
(1)詳細介紹
①該文件主要用于指定各個參數,是hibernate核心文件
②默認放在src目錄下,也可以放在別的目錄下。
③指定連接數據庫的驅動、用戶名、密碼、url、連接池..
④指定對象關系映射文件的位置.
⑤也可使用hibernate.properties文件來替代該文件.(推薦使用hibernate.cfg.xml)。
(2)配置文件模板
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!-- hibernate的核心配置文件 --> <hibernate-configuration> <session-factory> <!--配置使用的driver --> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.username">root</property> <property name="connection.password">xu827928</property> <property name="connection.url">jdbc:mysql://127.0.0.1:3306/hbmtest</property> <!-- 配置dialect方言,明確告訴hibernate連接的是哪種數據庫 --> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 顯示出對應sql語句 --> <property name="show_sql">true</property> <!-- 格式化輸出sql語句 --> <property name="format_sql">true</property> <!--讓hibernate幫我們創建 一張表 --> <!-- update:如果沒有表則創建表 如果有表 則看表結構是否變化 如果有變化則會創建新表 如果沒有則添加 create:每次都創建新的數據庫 --> <!-- <property name="hbm2ddl.auto">create</property> --> <property name="hbm2ddl.auto">update</property> <!-- 指定管理對象映射文件 --> <mapping resource="com/lc/domain/Employee.hbm.xml"></mapping> </session-factory> </hibernate-configuration>
四、*.hbm.xml
(1)對象關系映射文件(*.hbm.xml)
①該文件主要作用是建立表和類的映射關系,是不可或缺的重要文件.
②一般放在其映射的類同一個目錄下,但不是必須的。
③命名方式一般是 類名.hbm.xml,但不是必須的。
④示意圖:
(2)配置文件模板
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC '-//Hibernate/Hibernate Mapping DTD 3.0//EN' 'http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd'> <!-- 這是映射Employee表的hibernate --> <!-- 該文件用于配置domain對象和表的映射關系 --> <hibernate-mapping package="com.lc.domain"> <class name="Employee" table="employee"> <!-- id元素用于指定主鍵屬性 --> <id name="id" column="id" type="java.lang.Integer"> <generator class="increment" /> </id> <!-- 對其他屬性的配置 --> <property name="name" type="java.lang.String"> <column name="name" not-null="false" /> </property> <property name="email" type="java.lang.String"> <column name="email" not-null="false" /> </property> <property name="hiredate" type="java.util.Date"> <column name="hiredate" not-null="false" /> </property> </class> </hibernate-mapping>
五、Configuration類
(1)詳細介紹
①負責管理hibernate的配置信息
②讀取hibernate.cfg.xml
③加載hibernate.cfg.xml配置文件中配置的驅動,url,用戶名,密碼,連接池.
④管理 *.hbm.xml對象關系文件.
(2)示意代碼:
Configuration cf=new Configuration().configure();
六、SessionFactory(會話工廠)接口
(1)詳細介紹
①緩存sql語句和某些數據
②在應用程序初始化的時候創建,是一個重量級的類(吃內存),一般用單例模式保證一個應用中只需要一個 SessionFactory實例.
③如果某個應用訪問多個數據庫,則要創建多個會話工廠實例,一般是一個數據庫一個會話工廠實例.
④通過SessionFactory接口可以獲得Session(會話)實例.
(2)示意代碼:
Configuration cf=new Configuration().configure(); SessionFactory sf=cf.buildSessionFactory(); Session s=sf.getCurrentSession(); //或者是: Session s=sf.openSession();
七、Session(會話)接口
(1)接口介紹
①Session一個實例代表與數據庫的一次操作(當然一次操作可以是crud組合)
②Session實例通過SessionFactory獲取,用完需要關閉。
③Session是線程不同步的(不安全),因此要保證在同一線程中使用,可以用getCurrentSessiong()。
④Session可以看做是持久化管理器,它是與持久化操作相關的接口
(2)示意代碼:
Configuration cf=new Configuration().configure(); SessionFactory sf=cf.buildSessionFactory(); Session s=sf.getCurrentSession(); //或者是: Session s=sf.openSession();
(3)Session(會話)接口的幾個重要方法
Session一般以對象的形式來操作,這里
給大家演示一下吧!(請參考文檔)
①保存一個對象(記錄)—save方法
②刪除一個對象(記錄)—delete方法
③查詢一個對象(記錄)—get/load方法
④修改一個對象(記錄)—update方法
(4)get()和load()區別
1、get()方法直接返回實體類,如果查不到數據則返回null。load()會返回一個實體代理對象(當前這個對象可以自動轉化為實體對象),但當代理對象被調用時,如果沒有數據不存在,就會拋出個org.hibernate.ObjectNotFoundException異常
2.load先到緩存(session緩存/二級緩存)中去查,如果沒有則返回一個代理對象(不馬上到DB中去找),等后面使用這個代理對象操作的時候,才到DB中查詢,這就是我們常說的 load在默認情況下支持延遲加載(lazy)
3. get先到緩存(session緩存/二級緩存)中去查,如果沒有就到DB中去查(即馬上發出sql)。總之,如果你確定DB中有這個對象就用load(),不確定就用get()(這樣效率高)
load VS get
1. 如果查詢不到數據,get 會返回 null,但是不會報錯, load 如果查詢不到數據,則報錯ObjectNotFoundException
2. 使用get 去查詢數據,(先到一級/二級)會立即向db發出查詢請求(select ...), 如果你使用的是 load查詢數據,(先到一級、二級))即使查詢到對象,返回的是一個代理對象,如果后面沒有使用查詢結果,它不會真的向數據庫發select ,當程序員使用查詢結果的時候才真的發出select ,這個現象我們稱為懶加載(lazy)
3. 通過修改配置文件(*.hbm.xml文件),我們可以取消懶加載
<class name="Employee" lazy="false" table="employee">
4. 如何選擇使用哪個: 如果你確定DB中有這個對象就用load(),不確定就用get()(這樣效率高)
(5)openSession()和 getCurrentSession()區別
①采用getCurrentSession()創建的session會綁定到當前線程中,而采用openSession()創建的session則不會
②采用getCurrentSession()創建的session在commit或rollback時會自動關閉,而采用openSession()創建的session必須手動關閉.
③使用getCurrentSession()需要在hibernate.cfg.xml文件中加入
如下配置:
* 如果使用的是本地事務(jdbc事務) <property name="hibernate.current_session_context_class">thread</property> * 如果使用的是全局事務(jta事務) <property name="hibernate.current_session_context_class">jta</property>
(6) openSession()和 getCurrentSession()聯系
深入探討:
在 SessionFactory啟動的時候,Hibernate 會根據配置創建相應的 CurrentSessionContext,在getCurrentSession()被調用的時候,實際被執行的方法是 CurrentSessionContext.currentSession()。
在currentSession()執行時,如果當前Session為空,currentSession會調用SessionFactory的openSession。
(7)openSession()和 getCurrentSession()究竟選誰?
原則:
①如果需要在同一線程中,保證使用同一個Session則,使用getCurrentSession()
②如果在一個線程中,需要使用不同的Session,則使用opentSession()
(8)openSession()和 getCurrentSession()聯系,用ThreadLocal模式 (線程局部變量模式) 管理Session,代碼如下:
public class HibernateUtil { public static final ThreadLocal session =new ThreadLocal(); public static final SessionFactory sessionFactory; static { try { sessionFactory = new Configuration().configure().buildSessionFactory(); } catch (Throwable ex) { throw new ExceptionInInitializerError(ex); } } public static Session currentSession() throws HibernateException { Session s = session.get(); if(s == null) { s = sessionFactory.openSession();session.set(s);} return s;} public static void closeSession() throws HibernateException { Session s = session.get(); if(s != null) { s.close();} session.set(null); }}
八、Transaction(事務)接口
(1)這里我們簡單給大家說明一下什么是事務。
事務簡單的說,就是一組對數據庫的操作集合,它們要么全部成功,要么全部失敗.這個可以保證數據的一致性,事務具有原子性。
①Transaction是底層的事物實現中抽象出來的接口
②可能是一個jdbc或者jta的事務,這樣有利于hibernate在不同執行環境的移植。
③hibernate要求顯示的調用事務(如果僅僅是查詢可以不調用.)
Transaction ts=s.beginTransaction(); ... ts.commit();s.close(); 發生異常需要ts.rollback()回滾.
(2)全局事務和本地事務
本地事務:針對一個數據庫的事務;(jabc事務)
全部事務:跨數據庫的事務(jta事務);
如果要使用getCurrentSession的時候就需要在hibernate.cfg.xml文件中根據實際配置
* 如果使用的是本地事務(jdbc事務) <property name="hibernate.current_session_context_class">thread</property> * 如果使用的是全局事務(jta事務) <property name="hibernate.current_session_context_class">jta</property>
九、Query接口
(1)Query接口類型的對象可以對數據庫操作,它可以使用Hql,Qbc,Qbe和原生SQL(native Sql)對數據庫操作.官方推薦使用Hql語句。
十、 Criteria接口
Criteria接口也可用于面向對象方式的查詢,關于它的具體用法我們
這里先不做介紹,簡單看幾個案例.
最簡單案例:返回50條記錄
Criteria crit = sess.createCriteria(Cat.class); crit.setMaxResults(50); List cats = crit.list();
限制結果集內容
List cats = sess.createCriteria(Cat.class) .add( Restrictions.like("name", "Fritz%") ) .add( Restrictions.between("weight", minWeight, maxWeight) ) .list();
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。