一、Hibernate 概述
1.Hibernate 是一個持久化框架
(1)從狹義的角度來講,“持久化” 僅僅指把內存中的對象永久的保存到硬盤中的數據庫中。
(2)從廣義的角度來講,“持久化” 包括和數據庫相關的各種操作。如:CRUD。
2.Hibernate 是一個 ORM 框架
ORM:對象關系映射。O 面向對象:類、對象、屬性。R 面向關系:表、行(記錄)、列(字段)。M 映射。
ORM 思想:關系數據庫中的 行(記錄)映射一個對象,程序員可以把對數據庫的操作轉化為對對象的操作。
在 Hibernate 中,存在 對象關系映射文件用來描述對象與表記錄之間的映射關系。
3.Hibernate 配置文件:hibernate.cfg.xml ,配置數據庫連接、Hibernate 本身的一些信息、對象關系映射。
4.Entity.hbm.xml 配置文件:對象關系映射文件。
5.Session 接口:Session 是應用程序與數據庫之間交互操作的一個單線程對象,是 Hibernate 運作的中心。Session 有一個一級緩存,相當於 JDBC 中的 Connection。
6.SessionFactory 接口:根據配置生成 Session 的工廠。
7.Transaction :事務,可以通過 Session 來開啟事務。
二、HelloWorld
(1)在 Intellij Idea 下新建 hibernate.cfg.xml 和根據表創建 實體和 Entity.hbm.xml 文件已經在前一篇文章中講過了。
(2)生成的 hibernate.cfg.xml 文件。
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- 配置連接數據庫的基本信息 --> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/hibernate</property> <!-- 配置 Hibernate 的基本信息 --> <property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property> <property name="show_sql">true</property> <property name="format_sql">true</property> <!-- 指定自動生成數據表的策略 --> <property name="hbm2ddl.auto">update</property> <mapping resource="com/nucsoft/hibernate/News.hbm.xml"/> </session-factory> </hibernate-configuration>
(2)創建的 news 表。
(3)生成的 News 實體和 News.hbm.xml 文件。
/** * @author solverpeng * @create 2016-09-28-19:36 */ public class News { private int id; private String title; private String author; private Date date; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } @Override public boolean equals(Object o) { if(this == o) { return true; } if(o == null || getClass() != o.getClass()) { return false; } News news = (News) o; if(id != news.id) { return false; } if(title != null ? !title.equals(news.title) : news.title != null) { return false; } if(author != null ? !author.equals(news.author) : news.author != null) { return false; } if(date != null ? !date.equals(news.date) : news.date != null) { return false; } return true; } @Override public int hashCode() { int result = id; result = 31 * result + (title != null ? title.hashCode() : 0); result = 31 * result + (author != null ? author.hashCode() : 0); result = 31 * result + (date != null ? date.hashCode() : 0); return result; } } News.java <?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"> <hibernate-mapping> <class name="com.nucsoft.hibernate.News" table="news" schema="hibernate"> <id name="id"> <column name="id" sql-type="int(11)"/> </id> <property name="title"> <column name="title" sql-type="varchar(255)" not-null="true"/> </property> <property name="author"> <column name="author" sql-type="varchar(50)" length="50" not-null="true"/> </property> <property name="date"> <column name="date" sql-type="date" not-null="true"/> </property> </class> </hibernate-mapping> News.hbm.xml(4)測試
@Test public void test() { // 1.創建 SessionFactory SessionFactory sessionFactory = null; Configuration configuration = new Configuration().configure(); ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry(); sessionFactory = configuration.buildSessionFactory(serviceRegistry); // 2.創建 Session Session session = sessionFactory.openSession(); // 3.開啟事務 Transaction transaction = session.beginTransaction(); // 4.執行數據庫操作 News news = new News(); news.setTitle("Title"); news.setAuthor("tom"); news.setDate(new Date(new java.util.Date().getTime())); session.save(news); // 5.提交事務 transaction.commit(); // 6.關閉 Session session.close(); // 7.關閉 SessionFactory sessionFactory.close(); }
說明:
①SessionFactory 對象是通過 Configuration 對象來獲取的,Configuration 的 configure() 方法會默認取讀取類路徑下的 hibernate.cfg.xml 文件。
從 hibernate.cfg.xml 中讀取的配置會向 ServiceRegistry 中注冊,最終生成的 SessionFactory 對象就是根據 hibernate.cfg.xml 配置生成的。
②事務的開啟:Session 的 beginTransaction() 方法。
③注意資源的關閉。
④事實上,在容器的環境下,我們不需要去關注 SessionFactory 的獲取,資源的關閉。
結果:
三、總結
從第一部分 Hibernate 概述中,確定了學習 Hibernate,要從以下幾個方面來學習:Hibernate的配置文件,對象關系映射文件(主要內容是關聯關系),Session API 以及緩存,事務控制。
從第二部分 Helloworld 中,體驗了 Hibernate的 便捷,關於配置的添加,上篇文章已經說過,在以後的文章中詳細介紹具體配置。