本篇內(nèi)容主要講解“spring中hibernate怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“spring中hibernate怎么使用”吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供射洪網(wǎng)站建設(shè)、射洪做網(wǎng)站、射洪網(wǎng)站設(shè)計、射洪網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、射洪企業(yè)網(wǎng)站模板建站服務(wù),十載射洪做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
首先需要配置數(shù)據(jù)源,通常我們有兩種方式獲得Connection,一是自己編寫代碼獲得連接,二是從JNDI環(huán)境中得到DataSource,然后產(chǎn)生一個Connection。無論怎樣,既然是spring下面的對象,就應(yīng)該注冊到配置文件中。假設(shè)我們需要一個連接MySQL下面一個叫做examer的數(shù)據(jù)庫,手動方式的配置是:
很好讀是不是?假如我們使用JNDI數(shù)據(jù)源,那么dataSource的聲明就應(yīng)該是:
你需要在JNDI環(huán)境中綁定一個名為jdbc/springExamer的東西,這段代碼才有實(shí)際意義。另外需要提醒的是,所有的bean聲明,它的id必須是唯一的。
在本系統(tǒng)中,數(shù)據(jù)庫操作是被hibernate封裝起來的,所以dataSource是不需要注入到具體的邏輯類中,它只會被注給hibernate的sessionFactory。
按照常規(guī)思路,我們需要在spring中注冊hibernate的sessionFactory,它應(yīng)該是我們自己編寫的一個類,獲得dataSource,返回sessionFactory,其他的邏輯類通過這個sessionFactory獲得session進(jìn)行數(shù)據(jù)庫操作。
但是我們有另外一種選擇,spring直接提供了對sessionFactory的封裝,你只需要注冊一個spring自己的類,給它提供必須的屬性,它會返回一個org.springframework.orm.hibernate.HibernateTemplate,這個類封裝了add、del等操作,它的封裝程度相當(dāng)高,通過它來編寫hibernate應(yīng)用非常簡單。但是問題出來了,我們該如何選擇?
表面上看,使用spring自己的庫無疑更加簡單,但是請注意,spring是一個輕量級的框架,所謂輕量級,一個重要特征就是無侵入性,也就是你使用這套框架,不會被它綁定,被spring管理的類,應(yīng)該不需要使用它的接口和抽象類,這樣你的系統(tǒng)不會對spring產(chǎn)生依賴。但是如果你使用了spring封裝的方式去操作hibernate,就必須繼承org.springframework.orm.hibernate.support.HibernateDaoSupport類,這導(dǎo)致了綁定。所以做這樣的選擇是有點(diǎn)痛苦的,如果有一天spring框架不存在了,你的代碼怎么升級維護(hù)?具體問題只能具體分析,在我們的應(yīng)用中,完全使用了spring封裝的HibernateTemplate,它太好用了,所以容易上癮。
假設(shè)我們有一張student表,結(jié)構(gòu)很簡單:
id 自動增長
name varchar(40)
password varchar(32)
grade int(4) 年級
sex Boolean 性別(true為男,false為女)
設(shè)計一個Student類來映射這張表:
/*
* 創(chuàng)建日期 2005-3-17
*/
packagenet.bromon.spring.examer.pojo;
/**
* @author Bromon
*/
publicclassStudent
{
privateintid;
privateStringname;
privateStringpassword;
privateintgrade;//年級
privatebooleansex;
getset方法……….
}
編寫Student.hbm.xml,讓hibernate知道如何去關(guān)聯(lián)student表和Student類,該文件和Student.java在同一目錄:
<classname="net.bromon.spring.examer.pojo.Student" table="student">
class>
然后我們可以在spring中配置sessionFactory:
其中引用了我們之前注冊過的dataSource,mappingDirectoryLocations屬性指明了.hbm.xml文件在哪里路徑,該文件夾下面的.hbm.xml文件會被全部加載。
一切都準(zhǔn)備就緒,現(xiàn)在我們要加入一個StudentManager類,來進(jìn)行增刪查改的操作:
/*
* 創(chuàng)建日期 2005-3-17
*/
packagenet.bromon.spring.examer.student;
importnet.bromon.spring.examer.pojo.Student;
importorg.springframework.orm.hibernate.HibernateTemplate;
importorg.springframework.orm.hibernate.LocalSessionFactoryBean;
importorg.springframework.orm.hibernate.support.HibernateDaoSupport;
/**
* @author Bromon
*/
publicclassStudentManager extendsHibernateDaoSupport
{
privateLocalSessionFactoryBean sessionFactory;
privateHibernateTemplate ht;
publicStudentManager()
{
this.ht=super.getHibernateTemplate();
}
publicvoidadd(Student s)
{
ht.save(s);//插入一條數(shù)據(jù)只需要這一行代碼
}
}
該類只演示了如何增加一個Student,HibernateTemplate還封裝了很多有用的方法,請查閱spring文檔。StudentManager中的sessionFactory是由spring注入的,但是StudentManager并沒有對sessionFactory做任何的處理,這是因?yàn)樗械奶幚矶急籋ibernateDaoSupport.getHibernateTemplate()封裝。整個StudentManager中也看不到任何的異常處理,他們也都被基類封裝了。
最后一個步驟就是在spring中注冊StudentManger,然后向它注入sessionFactory:
所有的配置都完成了,下面做單元測試:
/*
* 創(chuàng)建日期 2005-3-17
*/
packagenet.bromon.spring.examer.student.test;
importjava.io.FileInputStream;
importorg.springframework.beans.factory.xml.XmlBeanFactory;
importorg.springframework.context.ApplicationContext;
importorg.springframework.context.support.ClassPathXmlApplicationContext;
importnet.bromon.spring.examer.pojo.Student;
importnet.bromon.spring.examer.student.StudentManager;
importjunit.framework.TestCase;
/**
* @author Bromon
*/
publicclassTestStudentManager extendsTestCase {
publicvoidtestAdd()
{
try
{
ApplicationContext context =newClassPathXmlApplicationContext("springConfig.xml");
Student s=newStudent();
s.setName("bromon");
s.setPassword("123");
s.setGrade(3);
s.setSex(true);
((StudentManager)context.getBean("studentManager")).add(s);
}catch(Exceptione)
{
e.printStackTrace();
}
}
}
Spring已經(jīng)將hibernate的操作簡化到了非常高的程度,最關(guān)鍵的是整個開發(fā)可以由設(shè)計來驅(qū)動,如果一個團(tuán)隊(duì)對spring有足夠的熟悉,那么完全可以由設(shè)計師規(guī)劃所有的類,整理清楚類之間的關(guān)系,寫成配置文件,然后編寫hibernate映射文件,將數(shù)據(jù)表與pojo關(guān)聯(lián),成員就可以完全在設(shè)計方案內(nèi)工作,利用spring封裝好的hibernate模版,開發(fā)起來速度非??欤{(diào)試也很容易。它能夠解決如何在團(tuán)隊(duì)內(nèi)貫徹設(shè)計方案的問題。
到此,相信大家對“spring中hibernate怎么使用”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!