【SSH框架】系列之 Spring 整合 Hibernate 框架

孔乙己學習成長錄發表於2018-03-04

1、SSH 三大框架整合原理【SSH框架】系列之 Spring 整合 Hibernate 框架

  • Spring 與 Struts2 的整合就是將 Action 物件交給 Spring 容器來負責建立。

  • Spring 與 Hibernate 的整合就是將 SessionFactory 交給 Spring 容器來負責維護,並且 Spring 容器負責 Session 維護以及相關的 AOP 事務。

2、Spring 整合 Hibernate 框架

(1)、新建 web 專案,匯入 Spring 和 Hibernate 框架所需要的 jar 包,如下圖所示:

【SSH框架】系列之 Spring 整合 Hibernate 框架

(2)、單獨配置 Spring 容器,具體配置如下:

applicationContext.xml

  • 建立配置檔案,並匯入約束
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://www.springframework.org/schema/beans" 
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:aop="http://www.springframework.org/schema/aop" 
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd 
                            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd 
                            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd 
                            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">

</beans>
複製程式碼

web.xml

  • 配置 Spring 隨專案啟動
 <!-- 讓spring隨web啟動而建立的監聽器 -->
  <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <!-- 配置spring配置檔案位置引數 -->
  <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
複製程式碼

(3)、單獨配置 Hibernate

  • 書寫實體類與 orm 後設資料

  • 配置主配置檔案

hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>

         <!-- 資料庫驅動 -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
         <!-- 資料庫url -->
        <property name="hibernate.connection.url">jdbc:mysql:///hbDB</property>
         <!-- 資料庫連線使用者名稱 -->
        <property name="hibernate.connection.username">root</property>
         <!-- 資料庫連線密碼 -->
        <property name="hibernate.connection.password">root</property>
        <!-- 資料庫方言
            注意: MYSQL在選擇方言時,請選擇最短的方言.
         -->
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>


        <!-- 將hibernate生成的sql語句列印到控制檯 -->
        <property name="hibernate.show_sql">true</property>
        <!-- 將hibernate生成的sql語句格式化(語法縮排) -->
        <property name="hibernate.format_sql">true</property>
        <!-- 
        自動匯出表結構. 自動建表
         -->
        <property name="hibernate.hbm2ddl.auto">update</property>

         <!-- 引入實體配置檔案 -->
        <mapping resource="com/spring/domain/*.hbm.xml" />
        <mapping resource="com/spring/domain/*.hbm.xml" />
        <mapping resource="com/spring/domain/*.hbm.xml" />

    </session-factory>
</hibernate-configuration>
複製程式碼

(4)、Spring 整合 Hibernate

  • 在 Spring 容器中配置SessionFactory
<!-- 在 Spring 配置中放置 hibernate 配置資訊 -->
    <bean name="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" >
        <!-- 將連線池注入到 sessionFactory, hibernate 會通過連線池獲得連線 -->
        <property name="dataSource" ref="dataSource" ></property>
        <!-- 配置 hibernate 基本資訊 -->
        <property name="hibernateProperties">
            <props>
                <!--  必選配置 -->
            <!--    <prop key="hibernate.connection.driver_class" >com.mysql.jdbc.Driver</prop>
                <prop key="hibernate.connection.url" >jdbc:mysql:///crm_32</prop>
                <prop key="hibernate.connection.username" >root</prop>
                <prop key="hibernate.connection.password" >1234</prop> -->
                <prop key="hibernate.dialect" >org.hibernate.dialect.MySQLDialect</prop>

                <!--  可選配置 -->
                <prop key="hibernate.show_sql" >true</prop>
                <prop key="hibernate.format_sql" >true</prop>
                <prop key="hibernate.hbm2ddl.auto" >update</prop>
            </props>
        </property>
        <!-- 引入 orm 後設資料,指定orm後設資料所在的包路徑,spring 會自動讀取包中的所有配置 -->
        <property name="mappingDirectoryLocations" value="classpath:com/spring/domain" ></property>
    </bean>
複製程式碼

(5)、Spring 整合 hibernate 環境運算元據庫

  • 建立 Dao 類繼承 HibernateDaoSupport

  • Spring 中配置 action service dao

<!-- action -->
    <!-- Action物件作用範圍一定是多例的 -->
    <bean name="*Action" class="com.spring.web.action.*Action" scope="prototype" >
        <property name="*Service" ref="*Service" ></property>
    </bean>
    <!-- service -->
    <bean name="*Service" class="com.spring.service.impl.*ServiceImpl" >
        <property name="*demo" ref="*Dao" ></property>
    </bean>
    <!-- dao -->
    <bean name="*Dao" class="com.spring.dao.impl.*DaoImpl" >
        <!-- 注入sessionFactory -->
        <property name="sessionFactory" ref="sessionFactory" ></property>
    </bean>
複製程式碼
  • 使用 hibernate 模板進行具體操作


                             掃描關注微信公眾號,瞭解更多

                                   【SSH框架】系列之 Spring 整合 Hibernate 框架


相關文章