Spring4.3.4和Hibernate 5.2.3整合

開始前先閱讀下文:
http://blog.csdn.net/frankcheng5143/article/details/50634487

1. hibernate.cfg.xml不在需要數(shù)據(jù)庫連接的配置婆瓜,刪掉

刪除前:

<?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>
        <!-- 配置Hibernate的基本屬性 -->
        <!-- 1.數(shù)據(jù)源配置到IOC容器中 -->
        <!-- 2.關(guān)聯(lián)的.hbm.xml也在IOC容器配置SessionFactory實例 -->
        <!-- 3.配置Hibernate的基本屬性:方言蔚叨,SQL顯示及格式化哟玷,生成數(shù)據(jù)表的策略以及二級緩存 -->
        <property name="connection.url">jdbc:mysql://xxx.xxx.xxx.xxxx:3306/xxxxx</property>
        <property name="connection.username">root</property>
        <property name="connection.password">xxxxxxxx</property>
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>

        <!-- 數(shù)據(jù)庫連接池的大小 -->
        <property name="connection.pool_size">5</property>
        <!-- 每次從數(shù)據(jù)庫中取出并放到JDBC的Statement中的記錄條數(shù)。Fetch Size設(shè)的越大,讀數(shù)據(jù)庫的次數(shù)越少沮尿,速度越快蕾羊,F(xiàn)etch Size越小,讀數(shù)據(jù)庫的次數(shù)越多避矢,速度越慢-->
        <property name="jdbc.fetch_size">50 </property>
        <!--批量插入,刪除和更新時每次操作的記錄數(shù)悼瘾。Batch Size越大,批量操作的向數(shù)據(jù)庫發(fā)送Sql的次數(shù)越少审胸,速度就越快亥宿,同樣耗用內(nèi)存就越大-->
        <property name="jdbc.batch_size">23 </property>
        <!-- SQL 方言 -->
        <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>
        <!-- 在控制臺輸出sql語句 -->
        <property name="show_sql">true</property>
        <!-- 在啟動時根據(jù)配置更新數(shù)據(jù)庫 -->
        <property name="hbm2ddl.auto">update</property>

        <mapping class="com.xxxx.fabu.model.CheckItem"/>
        <mapping class="com.xxxx.fabu.model.User"/>
        <mapping class="com.xxxx.fabu.model.CheckInfo"/>
    </session-factory>
</hibernate-configuration>

修改后:

<?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>

        <!-- 數(shù)據(jù)庫連接池的大小 -->
        <property name="connection.pool_size">5</property>
        <!-- 每次從數(shù)據(jù)庫中取出并放到JDBC的Statement中的記錄條數(shù)。Fetch Size設(shè)的越大砂沛,讀數(shù)據(jù)庫的次數(shù)越少烫扼,速度越快,F(xiàn)etch Size越小碍庵,讀數(shù)據(jù)庫的次數(shù)越多映企,速度越慢-->
        <property name="jdbc.fetch_size">50 </property>
        <!--批量插入,刪除和更新時每次操作的記錄數(shù)。Batch Size越大怎抛,批量操作的向數(shù)據(jù)庫發(fā)送Sql的次數(shù)越少卑吭,速度就越快,同樣耗用內(nèi)存就越大-->
        <property name="jdbc.batch_size">23 </property>
        <!-- SQL 方言 -->
        <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>
        <!-- 在控制臺輸出sql語句 -->
        <property name="show_sql">true</property>
        <!-- 在啟動時根據(jù)配置更新數(shù)據(jù)庫 -->
        <property name="hbm2ddl.auto">update</property>

        <mapping class="com.xxxx.fabu.model.CheckItem"/>
        <mapping class="com.xxxx.fabu.model.User"/>
        <mapping class="com.xxxx.fabu.model.CheckInfo"/>
    </session-factory>
</hibernate-configuration>

2. 創(chuàng)建database.properties文件

##在applicationContext.xml文件之中引入此配置的資源文件
db.url=jdbc:mysql://xxx.xxx.xxx.xxx:3306/xxxx
db.user=root
db.password=xxxxxx
pool.max=100
pool.min=20
pool.init=10
pool.idle=100

3. 在繼續(xù)配置前先添加必要的命名空間

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-4.3.xsd

       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.3.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context/spring-context.xsd">

    <!--在當前的配置之中采用Annotation的注解方式進行定義-->
    <context:annotation-config/>
    <!--定義掃描包马绝,此包中定義的所有的程序類支持Annotation-->
    <context:component-scan base-package="com.xxxx"/>


    <bean id="sessionFactory"
          class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <property name="configLocation" value="classpath:hibernate.cfg.xml"/>
    </bean>

</beans>

4.配置數(shù)據(jù)庫連接池

在applicationContext.xml文件中添加上文的database.properties配置文件

<context:property-placeholder location="classpath:database.properties" />

配置dataSource豆赏、sessionFactory,最后applicationContext.xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-4.3.xsd

       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.3.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context/spring-context.xsd">

    <!--在當前的配置之中采用Annotation的注解方式進行定義-->
    <context:annotation-config/>
    <!--定義掃描包富稻,此包中定義的所有的程序類支持Annotation-->
    <context:component-scan base-package="com.xxxx"/>

    <!--設(shè)置要導(dǎo)入的資源文件路徑掷邦,直接通過classpath加載-->
    <context:property-placeholder location="classpath:database.properties"/>

    <!--配置數(shù)據(jù)庫連接池-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${db.driver}"/>
        <property name="jdbcUrl" value="${db.url}"/>
        <property name="user" value="${db.user}"/>
        <property name="password" value="${db.password}"/>
        <property name="maxPoolSize" value="${pool.max}"/>
        <property name="minPoolSize" value="${pool.min}"/>
        <property name="initialPoolSize" value="${pool.init}"/>
        <property name="maxIdleTime" value="${pool.idle}"/>
    </bean>

    <!--配置hibernate中的SessionFactory程序類,此時將通過spring負責(zé)管理-->
    <bean id="sessionFactory"
          class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <!--配置hibernate.cfg.xml文件的引用路徑椭赋,通過classpath引用-->
        <property name="configLocation" value="classpath:hibernate.cfg.xml"/>
        <!--SessionFactory的執(zhí)行需要dataSource支持抚岗,將之前的c3p0的數(shù)據(jù)源配置進來-->
        <property name="dataSource" ref="dataSource"/>
    </bean>

</beans>

5.事務(wù)

<!--配置Hibernate的事務(wù)控制,同時可以實現(xiàn)數(shù)據(jù)庫的關(guān)閉處理-->
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
     <property name="sessionFactory" ref="sessionFactory"/>
</bean>

<tx:annotation-driven transaction-manager="transactionManager"/>

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末哪怔,一起剝皮案震驚了整個濱河市宣蔚,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌认境,老刑警劉巖胚委,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異叉信,居然都是意外死亡亩冬,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門硼身,熙熙樓的掌柜王于貴愁眉苦臉地迎上來硅急,“玉大人覆享,你說我怎么就攤上這事∮啵” “怎么了撒顿?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長连茧。 經(jīng)常有香客問我核蘸,道長巍糯,這世上最難降的妖魔是什么啸驯? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮祟峦,結(jié)果婚禮上罚斗,老公的妹妹穿的比我還像新娘。我一直安慰自己宅楞,他們只是感情好针姿,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著厌衙,像睡著了一般距淫。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上婶希,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天榕暇,我揣著相機與錄音,去河邊找鬼喻杈。 笑死彤枢,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的筒饰。 我是一名探鬼主播缴啡,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼瓷们!你這毒婦竟也來了业栅?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤谬晕,失蹤者是張志新(化名)和其女友劉穎碘裕,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體固蚤,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡娘汞,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了夕玩。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片你弦。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡惊豺,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出禽作,到底是詐尸還是另有隱情尸昧,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布旷偿,位于F島的核電站烹俗,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏萍程。R本人自食惡果不足惜幢妄,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望茫负。 院中可真熱鬧蕉鸳,春花似錦、人聲如沸忍法。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽饿序。三九已至勉失,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間原探,已是汗流浹背乱凿。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留踢匣,地道東北人告匠。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像离唬,于是被迫代替她去往敵國和親后专。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容