Hibernate框架基礎
阿新 • • 發佈:2019-01-04
Hibernate是一個開放原始碼的、非常優秀、成熟的O/R Mapping框架。它提供了強大、高效能的Java物件和關係資料的持久化和查詢功能。
Hibernate 只是一個將持久化類與資料庫表相對映的工具,每個持久化類例項均對應於資料庫表中的一條資料行。可以使用面向物件的方法操作此持久化類例項,完成對資料庫表的插入、刪除、修改等操作。
利用Hibernate操作資料庫,我們通過應用程式經過Hibernate持久層來訪問資料庫,其實Hibernate完成了以前JDBC的功能,不過Hibernate使用面向物件的方法操作資料庫。
Hibernate入門示例:
第1步: 先建一個Java
第2步:在src建立配置檔案hibernate.cfg.xml,放置在src目錄中。
第3步:編寫一個會話工廠類。通過會話工廠類產生一個會話Session物件。Session物件是Hibernate的核心。任何對資料庫操作都在會話中進行的。
第4步:編寫POJO類以及對映檔案(兩者在同一資料夾下)。
第5步:編寫測試檔案
hibernate.cfg.xml檔案如下:
對映檔案示例如下:<span style="color:#6666cc;"><?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-configuration> <session-factory> <property name="connection.driver_class"> com.mysql.jdbc.Driver </property> <property name="connection.url"> jdbc:mysql://127.0.0.1:3306/hib </property> <property name="connection.username">root</property> <property name="connection.password">1234</property> <property name="dialect"> org.hibernate.dialect.MySQLDialect </property> <mapping resource="cn/hncu/domain/Student.hbm.xml"/> <mapping resource="cn/hncu/domain/Dept.hbm.xml"/> </session-factory> </hibernate-configuration></span>
Dept.hbm.xml
Student.hbm.xml<span style="color:#6666cc;"><?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"> <hibernate-mapping package="cn.hncu.domain"> <class name="Dept" table="depts" catalog="hib"> <id name="deptId" type="java.lang.String"> <column name="id" length="8"></column> </id> <property name="deptName" type="java.lang.String"> <column name="name" length="30"></column> </property> <set name="students" table="students" inverse="true" cascade="all"> <key > <column name="dept" length="8"></column> </key> <one-to-many class="Student" /> </set> </class> </hibernate-mapping></span>
<span style="color:#6666cc;"><?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">
<hibernate-mapping package="cn.hncu.domain">
<class name="Student" table="students" catalog="hib">
<id name="studId" type="java.lang.String">
<column name="id" length="8"></column>
</id>
<property name="studName" type="java.lang.String">
<column name="name" length="30"></column>
</property>
<property name="age" type="java.lang.Integer">
<column name="age" />
</property>
<many-to-one name="dept" class="Dept" fetch="select">
<column name="dept" length="8"></column>
</many-to-one>
</class>
</hibernate-mapping></span>
HibernateSessionFactory類核心程式碼:
<span style="color:#3366ff;">import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateSessionFactory {
private static final String configFile = "/hibernate.cfg.xml";
private static Configuration config = new Configuration();
private static SessionFactory sessionFactory = null;
private static final ThreadLocal<Session> t = new ThreadLocal<Session>();
static {
try {
config.configure(configFile);
sessionFactory = config.buildSessionFactory();
} catch (HibernateException e) {
e.printStackTrace();
}
}
public static Session getSession() throws HibernateException {
Session session = t.get();
if (session == null || !session.isOpen()) {
if (sessionFactory == null) {
rebuildSessionFactory();
}
session = (sessionFactory!=null)?sessionFactory.openSession():null;
t.set(session);
}
return session;
}
private static void rebuildSessionFactory() {
try {
config.configure(configFile);
sessionFactory = config.buildSessionFactory();
} catch (HibernateException e) {
e.printStackTrace();
}
}
public static void close(){
Session session = t.get();
t.set(null);
if(session!=null && session.isOpen()){
session.close();
}
}
}</span><span style="color:#006600;">
</span>