條理清晰的搭建SSH環境之整合Hibernate和Spring

  上篇博客整合了Struts和Spring,感受很簡單,這篇博客主要講述Hibernate和Spring的整合。mysql

  若是說上篇博客中的整合是覺得Spring的IOC能夠管理對象,讓Struts2裏的對象管理變得更方便。那麼Hibernate與Spring的整合的好處就是,能夠將SessionFactory的實例交由Spring容器管理,那麼咱們只須要這一個實例就能夠了。還有一點就是聲明式的事務管理很是方便。spring

 

  須要如下配置:sql

  一、配置applicationContext.xml文件,添加配置sessionFactory的配置。數據庫

  

    <!-- 配置SessionFactory -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <!-- 指定hibernate的配置文件位置 -->
        <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
        <!-- 配置c3p0數據庫鏈接池 -->
        <property name="dataSource">
            <bean class="com.mchange.v2.c3p0.ComboPooledDataSource">
                <!-- 數據鏈接信息 -->
                <property name="jdbcUrl" value="${jdbcUrl}"></property>
                <property name="driverClass" value="${driverClass}"></property>
                <property name="user" value="${user}"></property>
                <property name="password" value="${password}"></property>
                <!-- 其餘配置 -->
                <!--初始化時獲取三個鏈接,取值應在minPoolSize與maxPoolSize之間。Default: 3 -->
                <property name="initialPoolSize" value="3"></property>
                <!--鏈接池中保留的最小鏈接數。Default: 3 -->
                <property name="minPoolSize" value="3"></property>
                <!--鏈接池中保留的最大鏈接數。Default: 15 -->
                <property name="maxPoolSize" value="5"></property>
                <!--當鏈接池中的鏈接耗盡的時候c3p0一次同時獲取的鏈接數。Default: 3 -->
                <property name="acquireIncrement" value="3"></property>
                <!-- 控制數據源內加載的PreparedStatements數量。若是maxStatements與maxStatementsPerConnection均爲0,則緩存被關閉。Default: 0 -->
                <property name="maxStatements" value="8"></property>
                <!--maxStatementsPerConnection定義了鏈接池內單個鏈接所擁有的最大緩存statements數。Default: 0 -->
                <property name="maxStatementsPerConnection" value="5"></property>
                <!--最大空閒時間,1800秒內未使用則鏈接被丟棄。若爲0則永不丟棄。Default: 0 -->
                <property name="maxIdleTime" value="1800"></property>
            </bean>
        </property>
    </bean>

 

 

  二、由於下面的數據鏈接信息在不一樣項目裏配置不一樣,其餘的配置倒是相似的,因此咱們能夠將這些變化的東西拿出來,放在屬性文件裏。緩存

 <!-- 數據鏈接信息 -->
                <property name="jdbcUrl" value="${jdbcUrl}"></property>
                <property name="driverClass" value="${driverClass}"></property>
                <property name="user" value="${user}"></property>
                <property name="password" value="${password}"></property>

 

  新建屬性文件:jdbc.properties,具體內容爲:session

  

jdbcUrl        = jdbc:mysql:///oa2014
driverClass    = com.mysql.jdbc.Driver
user        = root
password    =123456

  經過<property name="jdbcUrl" value="${jdbcUrl}"></property>這種方式來使用。app

  三、將屬性文件導入,在applicationContext.xml裏導入:ui

  

    <!-- 導入外部的properties文件 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>

  四、配置聲明式事務管理。這裏採用註解的方式。spa

    <!-- 配置聲明式事務管理(採用註解的方式) -->
    <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    <tx:annotation-driven transaction-manager="txManager"/>

 

  最後展現applicationContext.xml配置文件的所有內容:hibernate

<?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:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
    
    <!-- 自動掃描與裝配bean -->
    <context:component-scan base-package="cn.oa2014.oa"></context:component-scan>
    <!-- 導入外部的properties文件 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    <!-- 配置SessionFactory -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <!-- 指定hibernate的配置文件位置 -->
        <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
        <!-- 配置c3p0數據庫鏈接池 -->
        <property name="dataSource">
            <bean class="com.mchange.v2.c3p0.ComboPooledDataSource">
                <!-- 數據鏈接信息 -->
                <property name="jdbcUrl" value="${jdbcUrl}"></property>
                <property name="driverClass" value="${driverClass}"></property>
                <property name="user" value="${user}"></property>
                <property name="password" value="${password}"></property>
                <!-- 其餘配置 -->
                <!--初始化時獲取三個鏈接,取值應在minPoolSize與maxPoolSize之間。Default: 3 -->
                <property name="initialPoolSize" value="3"></property>
                <!--鏈接池中保留的最小鏈接數。Default: 3 -->
                <property name="minPoolSize" value="3"></property>
                <!--鏈接池中保留的最大鏈接數。Default: 15 -->
                <property name="maxPoolSize" value="5"></property>
                <!--當鏈接池中的鏈接耗盡的時候c3p0一次同時獲取的鏈接數。Default: 3 -->
                <property name="acquireIncrement" value="3"></property>
                <!-- 控制數據源內加載的PreparedStatements數量。若是maxStatements與maxStatementsPerConnection均爲0,則緩存被關閉。Default: 0 -->
                <property name="maxStatements" value="8"></property>
                <!--maxStatementsPerConnection定義了鏈接池內單個鏈接所擁有的最大緩存statements數。Default: 0 -->
                <property name="maxStatementsPerConnection" value="5"></property>
                <!--最大空閒時間,1800秒內未使用則鏈接被丟棄。若爲0則永不丟棄。Default: 0 -->
                <property name="maxIdleTime" value="1800"></property>
            </bean>
        </property>
    </bean>

    <!-- 配置聲明式事務管理(採用註解的方式) -->
    <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    <tx:annotation-driven transaction-manager="txManager"/>
</beans>

 

   Hibernate與Spring的整合也完成,最後SSH的環境搭建成功了。經過與Spring的整合,爲Hibernate和Struts管理對象提供了不少方便與強大之處,具體的好處,還要在從此的OA項目中慢慢獲取了。

相關文章
相關標籤/搜索