Spring+Hibernate+Struts(SSH)框架整合

来源:https://www.cnblogs.com/cailijia52o/archive/2018/04/05/8724710.html
-Advertisement-
Play Games

SSH框架整合 前言:有人說,現在還是流行主流框架,SSM都出來很久了,更不要說SSH。我不以為然。現在許多公司所用的老項目還是ssh,如果改成主流框架,需要成本。再說比如金融IT這一塊,資料庫dao層還是推薦使用的是hibernate,因為能夠快速開發上手,除非是互聯網,因涉及到高併發,dao層用 ...


SSH框架整合

  前言:有人說,現在還是流行主流框架,SSM都出來很久了,更不要說SSH。我不以為然。現在許多公司所用的老項目還是ssh,如果改成主流框架,需要成本。再說比如金融IT這一塊,資料庫dao層還是推薦使用的是hibernate,因為能夠快速開發上手,除非是互聯網,因涉及到高併發,dao層用的是mybatis,數據交互效率較快。所以,SSH不容忽略。

一、什麼是SSH

  SSH是 struts+spring+hibernate的一個集成框架,是目前比較流行的一種Web應用程式開源框架。

集成SSH框架的系統從職責上分為四層:表示層、業務邏輯層、數據持久層和域模塊層,以幫助開發人員在短期內搭建結構清晰、可復用性好、維護方便的Web應用程式。其中使用Struts作為系統的整體基礎架構,負責MVC的分離,在Struts框架的模型部分,控制業務跳轉,利用Hibernate框架對持久層提供支持,Spring做管理,管理struts和hibernate。具體做法是:用面向對象的分析方法根據需求提出一些模型,將這些模型實現為基本的Java對象,然後編寫基本的DAO(Data Access Objects)介面,並給出Hibernate的DAO實現,採用Hibernate架構實現的DAO類來實現Java類與資料庫之間的轉換和訪問,最後由Spring做管理,管理struts和hibernate。

                                                                                          

---------百度百科

二、SSH所涉及的部分

  

  

三、快速部署環境

這裡利用保存客戶的小Demo來演示整合SSH

  1.導入所需jar包 

   1). Struts2框架

         * struts-2.3.24\apps\struts2-blank\WEB-INF\lib\*.jar        -- Struts2需要的所有jar包

        * struts2-spring-plugin-2.3.24.jar                          ---Struts2整合Spring的插件包

 

 

  2). Hibernate框架

    * hibernate-release-5.0.7.Final\lib\required\*.jar          -- Hibernate框架需要的jar包

    * slf4j-api-1.6.1.jar                                       -- 日誌介面

    * slf4j-log4j12-1.7.2.jar                                   -- 日誌實現

    * mysql-connector-java-5.1.7-bin.jar                        -- MySQL的驅動包

 

 

  3). Spring框架

    * IOC核心包

    * AOP核心包

    * JDBC模板和事務核心包

    * Spring整合JUnit測試包

    * Spring整合Hibernate核心包

    * Spring整合Struts2核心包

 

  2、在web.xml中配置spring與struts的相關代碼

  1)配置struts2核心過濾器

  這裡定義為攔截所有

 <!-- 配置核心過濾器 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
</filter-mapping>

  2)配置spring的監聽器

  當服務啟動時,就會先載入spring的配置文件

 <!-- 配置Spring框架整合WEB的監聽器 -->
     <listener>
           <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

  3)配置預設載入路徑

 <!-- 監聽器預設載入Web-INF文件下,需要配置參數來載入指定文件 -->
    <context-param>
         <param-name>contextConfigLocation</param-name>
         <param-value>classpath:applicationContext.xml</param-value>
</context-param>

  總結:web.xml全部代碼為

<!-- 配置Spring框架整合WEB的監聽器 -->
     <listener>
           <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 監聽器預設載入Web-INF文件下,需要配置參數來載入指定文件 -->
    <context-param>
         <param-name>contextConfigLocation</param-name>
         <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
  <!-- 配置核心過濾器 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

  2、src下編寫相關配置文件

  1)spring: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: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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd">
</beans>

  2)hibernate: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>
        <property name="hibernate.connection.url">jdbc:mysql://192.168.174.130:3306/SSH</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        
        <!-- 可選配置 -->
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.format_sql">true</property>
        <property name="hibernate.hbm2ddl.auto">update</property>
        
        <!-- 配置C3P0的連接池 -->
        <property name="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
        
        <!-- 不能配置綁定當前的線程的操作 -->
        <!-- 映射配置文件 -->
        <mapping resource="com/clj/domain/Customer.hbm.xml"/>
    </session-factory>
    
</hibernate-configuration>    

  3)配置log4j.properties

### direct log messages to stdout ###
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.err
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n

### direct messages to file mylog.log ###
log4j.appender.file=org.apache.log4j.FileAppender
log4j.appender.file.File=c\:mylog.log
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n

### set log levels - for more verbose logging change 'info' to 'debug' ###

log4j.rootLogger=info, stdout

  4)struts2:struts.xml

  導入相關約束

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
</struts>

  總結:src所需配置文件如圖

  

  3、配置dao層

  定義一個介面和其實現類

public interface CustomerDao {
    public void save(Customer customer);
}
public class CustomerDaoImpl  implements CustomerDao {
    public void save(Customer customer) {
        
    }

}

  4、定義業務層介面和實現類

package com.clj.service;

import com.clj.domain.Customer;

public interface CustomerService {
    public void save(Customer customer);
}
package com.clj.service;

import org.springframework.transaction.annotation.Transactional;

import com.clj.dao.CustomerDao;
import com.clj.domain.Customer;
/**
 * 客戶的業務層
 * @author Administrator
 *
 */
public class CustomerServiceImpl implements CustomerService{//用來保存客戶
    public void save(Customer customer) {
     
    }

}

  5、定義pojo類

  hibernate通過操作pojo類來操作資料庫表,做到對象關係映射

package com.clj.domain;

public class Customer {
    
    private Long cust_id;
    private String cust_name;
    private Long cust_user_id;
    private Long cust_create_id;
    private String cust_source;
    private String cust_industry;
    private String cust_level;
    private String cust_linkman;
    private String cust_phone;
    private String cust_mobile;
    
    public Long getCust_id() {
        return cust_id;
    }
    public void setCust_id(Long cust_id) {
        this.cust_id = cust_id;
    }
    public String getCust_name() {
        return cust_name;
    }
    public void setCust_name(String cust_name) {
        this.cust_name = cust_name;
    }
    public Long getCust_user_id() {
        return cust_user_id;
    }
    public void setCust_user_id(Long cust_user_id) {
        this.cust_user_id = cust_user_id;
    }
    public Long getCust_create_id() {
        return cust_create_id;
    }
    public void setCust_create_id(Long cust_create_id) {
        this.cust_create_id = cust_create_id;
    }
    public String getCust_source() {
        return cust_source;
    }
    public void setCust_source(String cust_source) {
        this.cust_source = cust_source;
    }
    public String getCust_industry() {
        return cust_industry;
    }
    public void setCust_industry(String cust_industry) {
        this.cust_industry = cust_industry;
    }
    public String getCust_level() {
        return cust_level;
    }
    public void setCust_level(String cust_level) {
        this.cust_level = cust_level;
    }
    public String getCust_linkman() {
        return cust_linkman;
    }
    public void setCust_linkman(String cust_linkman) {
        this.cust_linkman = cust_linkman;
    }
    public String getCust_phone() {
        return cust_phone;
    }
    public void setCust_phone(String cust_phone) {
        this.cust_phone = cust_phone;
    }
    public String getCust_mobile() {
        return cust_mobile;
    }
    public void setCust_mobile(String cust_mobile) {
        this.cust_mobile = cust_mobile;
    }
    @Override
    public String toString() {
        return "Customer [cust_id=" + cust_id + ", cust_name=" + cust_name
                + ", cust_user_id=" + cust_user_id + ", cust_create_id="
                + cust_create_id + ", cust_source=" + cust_source
                + ", cust_industry=" + cust_industry + ", cust_level="
                + cust_level + ", cust_linkman=" + cust_linkman
                + ", cust_phone=" + cust_phone + ", cust_mobile=" + cust_mobile
                + "]";
    }
    
}

  6、定義Customer.hbm.xml

  此配置文件關乎Customer這個pojo類,此文件需放在Customer pojo類同個包下

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
    
<hibernate-mapping>
    
    <class name="com.clj.domain.Customer" table="cst_customer">
        <id name="cust_id" column="cust_id">
            <generator class="native"/>
        </id>
        
        <property name="cust_name" column="cust_name"/>
        <property name="cust_user_id" column="cust_user_id"/>
        <property name="cust_create_id" column="cust_create_id"/>
        <property name="cust_source" column="cust_source"/>
        <property name="cust_industry" column="cust_industry"/>
        <property name="cust_level" column="cust_level"/>
        <property name="cust_linkman" column="cust_linkman"/>
        <property name="cust_phone" column="cust_phone"/>
        <property name="cust_mobile" column="cust_mobile"/>
        
    </class>
    
</hibernate-mapping>    

  項目構建大致圖

  

 

四、demo之保存客戶初步演示

  這裡先初略的定義持久層交給heibernate,業務層交個struts2,創建實例交給spring

  1、定義一個保存客戶的界面,利用form表單進行數據的提交

  根據功能變數名稱可知,這裡利用的是struts2的通配符方式進行訪問

<FORM id=form1 name=form1
        action="${pageContext.request.contextPath }/customer_add.action"
        method=post>
           <!--table部分省略-->
</FORM>

  2、在struts.xml中配置接受請求,根據action名和方法跳轉指定的action,執行指定的方法

  spring整合struts2方式一:action由struts2框架管理

   * 因為導入的struts2-spring-plugin-2.3.24.jar 包自帶一個配置文件 struts-plugin.xml ,該配置文件中有如下代碼

        * <constant name="struts.objectFactory" value="spring" />   開啟一個常量,如果該常量開啟,那麼下麵的常量就可以使用

        * struts.objectFactory.spring.autoWire = name,該常量是可以讓Action的類來自動裝配Bean對象!

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <!-- 配置包結構 -->
        <package name="crm" extends="struts-default" namespace="/">
            <!-- 配置客戶的Action -->
            <!--  方式一:aciton由struts2框架管理-->
      <action name="customer_*" class="com.clj.web.action.CustomerAction" method="{1}"/> 
    </package>
</struts>

  3、在spring的applicationContext.xml中配置相對應的bean以及事務

       這裡利用spring中IOC(控制反轉)的特性,將創建實例的任務交給spring框架管理

    <bean id="customerService" class="com.clj.service.CustomerServiceImpl">
        <property name="customerDao" ref="customerDao"></property>
    </bean>
    <bean id="customerDao" class="com.clj.dao.CustomerDaoImpl">
        <property name="hibernateTemplate" ref="hibernateTemplate"/>
    </bean>
    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate">
        <!-- 註入sessionFactory  -->
        <property name="sessionFactory"/>
    </bean>
</beans>

  4、編寫持久層實現類相關代碼

  這裡利用hibernate提供的模板類,內部封轉了session,從而可以調用session中的方法

/**
 * 持久層
 * 
 * @author Administrator
 *
 */
public class CustomerDaoImpl  implements CustomerDao {
    //將數據保存到資料庫中(調用模板類(hibernate提供,內部封裝了session))
    private HibernateTemplate hibernateTemplate;
    
    public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
        this.hibernateTemplate = hibernateTemplate;
    }

    /**
     * 保存客戶
     */
    public void save(Customer customer) {
        System.out.println("持久層:保存客戶");
        hibernateTemplate().save(customer);
    }

}

  5、編寫業務層實現類相關代碼

package com.clj.service;

import org.springframework.transaction.annotation.Transactional;

import com.clj.dao.CustomerDao;
import com.clj.domain.Customer;
/**
 * 客戶的業務層
 * @author Administrator
 *
 */
@Transactional
public class CustomerServiceImpl implements CustomerService{
    private CustomerDao customerDao;
    
    public void setCustomerDao(CustomerDao customerDao) {
        this.customerDao = customerDao;
    }

    //用來保存客戶
    public void save(Customer customer) {
        System.out.println("業務層,保存客戶");
        customerDao.save(customer);
    }

}

  6、編寫action相關代碼

  這裡通過struts2的模板類

package com.clj.web.action;

import org.apache.struts2.ServletActionContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

import com.clj.domain.Customer;
import com.clj.service.CustomerService;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

/**
 * 客戶的控制層
 * @author Administrator
 *
 */
public class CustomerAction extends ActionSupport implements ModelDriven<Customer>{
    //不要忘記手動new
    private Customer customer=new Customer();
    public Customer getModel() {
        return customer;
    }
    //提供service成員屬性,提供set方法
    private CustomerService customerService;
    
    

    public void setCustomerService(CustomerService customerService) {
        this.customerService = customerService;
    }



    /**
     * 保存客戶
     * @return
     */
    public String add(){
        System.out.println("WEB層,保存客戶");
        //方式一:創建web的工廠(action由struts2創建)
        WebApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(ServletActionContext.getServletContext());
        CustomerService cs=(CustomerService) context.getBean("customerService");
        //調用方法
        cs.save(customer);return NONE;
    }

    
}

五、項目優化之整合

  1、 spring整合struts2方式二:action由spring框架管理

  把具體的Action類配置文件applicatonContext.xml的配置文件中,但是註意:struts.xml需要做修改

<struts>
    <!-- 配置包結構 -->
        <package name="crm" extends="struts-default" namespace="/">
            <!-- 配置客戶的Action -->
            <!--  方式一:aciton由struts2框架管理
            <action name="customer_*" class="com.clj.web.action.CustomerAction" method="{1}"/>-->
            <!-- 方式二:action由spring管理,class標簽上只需要編寫srping配置bean的ID值既可以-->
             <action name="customer_*" class="customerAction" method="{1}"></action>
        </package>
</struts>

  2、在applicationContext.xml中配置Action類

   註意:1)Spring框架預設生成CustomerAction是單例的,而Struts2框架是多例的。所以需要配置 scope="prototype"

      2)此時沒有struts2的自動裝配,在action需要手動配置customerService屬性,併在action類中生成set方法

<!-- 配置客戶模塊 -->
    <!-- 強調:配置的Aciton,必須是多列的 -->
    <bean id="customerAction" class="com.clj.web.action.CustomerAction" scope="prototype">
        <!--註意:struts管理action時,基於其中有個struts-plugin的jar包,其中更改了一個
        常量struts.objectFactory.spring.autoWire = name將其打開了,可以自動裝配,只需要提供set方法
        但是此時action由spring管理,自動裝配失效,所以需要手動進行配置註入
        -->
        <property name="customerService" ref="customerService"></property>
</bean>

  3、.配置事務

   spring整合hibernate方式一:(帶有hibernate.cfg.xml的配置文件。強調:不能加綁定當前線程的配置)

  以前玩hibernate時,hibernate.cfg.xml都是由hibernate框架管理,其配置文件能生成sessionFactory,持久層載入此配置文件獲取sessionFactory,從而創建工廠生成session,進行數據的增刪改成,此時其配置文件應該交給spring管理,充分利用spring的IOC特性

  

  Spring框架提供了一個HibernateDaoSupport的工具類,以後DAO都可以繼承該類!!在引入hibernate核心配置文件之前,得讓dao層繼承一個父類HibernateDaoSupport,此父類內部封裝了事務模板

  看源碼:

  1)修改相對應的持久層實現類,讓他繼承HibernateDaoSupport

package com.clj.dao;

import org.springframework.orm.hibernate5.HibernateTemplate;
import org.springframework.orm.hibernate5.support.HibernateDaoSupport;

import com.clj.domain.Customer;
/**
 * 持久層
 * 繼承HibernateDaoSupport,內部封裝了HibernateTemplate
 * @author Administrator
 *
 */
public class CustomerDaoImpl extends HibernateDaoSupport implements CustomerDao {
    //將數據保存到資料庫中(調用模板類(hibernate提供,內部封裝了session))
    /*private HibernateTemplate hibernateTemplate;
    
    public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
        this.hibernateTemplate = hibernateTemplate;
    }*/

    /**
     * 保存客戶
     */
    public void save(Customer customer) {
        System.out.println("持久層:保存客戶");
        this.getHibernateTemplate().save(customer);
    }

}

  2)修改業務層讓,開啟事務註解

package com.clj.service;

import org.springframework.transaction.annotation.Transactional;

import com.clj.dao.CustomerDao;
import com.clj.domain.Customer;
/**
 * 客戶的業務層
 * @author Administrator
 *
 */
@Transactional
public class CustomerServiceImpl implements CustomerService{
    private CustomerDao customerDao;
    
    public void setCustomerDao(CustomerDao customerDao) {
        this.customerDao = customerDao;
    }

    //用來保存客戶
    public void save(Customer customer) {
        System.out.println("業務層,保存客戶");
        customerDao.save(customer);
    }

}

 

  3)修改applicationContext.xml文件

  先引入hibernate配置文件

<!-- 編寫bean,名稱都是固定的,由spring提供,用來載入hibernate.cfg.xml的配置文件-->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
    <!-- 配置路徑:當啟動伺服器時 ,該對象就會被創建,從而載入hibernate.cfg.xml文件,從而生成sessionFactory對象-->
        <property name="configLocation" value="classpath:hibernate.cfg.xml"/>
</bean>

  配置平臺事務管理:用來管理事務,註意現在使用的是Hibernate框架,所以需要使用Hibernate框架的事務管理器

<!-- 先配置平臺事務管理器 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
        <!-- 註入事務,session能夠管理事務,工廠能夠創建session -->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

  開啟事務註解

  <!-- 開啟事務的註解 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>

   去除模板類配置,併為持久層配置sessionFactory

<!-- 以後,Dao都需要繼承HibernateDaoSupport,註入sessionFactory -->
    <bean id="customerDao" class="com.clj.dao.CustomerDaoImpl">
        <!--<property name="hibernateTemplate" ref="hibernateTemplate"/>-->
        <!-- 這裡不註入模板類,而是註入sessionFactory,因為模板需要session(封裝了session)-->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

  全部代碼如下

<?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: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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd">
    <!-- 編寫bean,名稱都是固定的,有spring提供,用來載入hibernate.cfg.xml的配置文件-->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
    <!-- 配置路徑:當啟動伺服器時 ,該對象就會被創建,從而載入hibernate.cfg.xml文件,從而生成sessionFactory對象-->
        <property name="configLocation" value="classpath:hibernate.cfg.xml"/>
    </bean>
    
    <!-- 先配置平臺事務管理器 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
        <!-- 註入事務,session能夠管理事務,工廠能夠創建session -->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>
    
    <!-- 開啟事務的註解 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>
    
    <!-- 配置客戶模塊 -->
    <!-- 強調:配置的Aciton,必須是多列的 -->
    <bean id="customerAction" class="com.clj.web.action.CustomerAction" scope="prototype">
        <!--註意:struts管理action時,基於其中有個struts-plugin的jar包,其中更改了一個
        常量struts.objectFactory.spring.autoWire = name將其打開了,可以自動裝配,只需要提供set方法
        但是此時action由spring管理,自動裝配失效,所以需要手動進行配置註入
        -->
        <property name="customerService" ref="customerService"></property>
    </bean>
    <bean id="customerService" class="com.clj.service.CustomerServiceImpl">
        <property name="customerDao" ref="customerDao"></property>
    </bean>
    <bean id="customerDao" class="com.clj.dao.CustomerDaoImpl">
        <!--<property name="hibernateTemplate" ref="hibernateTemplate"/>-->
        <!-- 這裡不註入模板類,而是註入sessionFactory,因為模板需要session(封裝了session)-->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>
    <!-- 配置模板類(hibernate框架提供的,內部封裝了session),此時交給spring管理,如果持久層繼承了HibernateDaoSupport,則無需配置-->
    <!-- <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate">
        註入sessionFactory 
        <property name="sessionFactory"/>
    </bean>-->
</beans>

   4)修改action類

    因為註入了業務層實現類,所以此時可以直接調用業務層方法,無須載入bean

  

package com.clj.web.action;

import org.apache.struts2.ServletActionContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

import com.clj.domain.Customer;
import com.clj.service.CustomerService;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;

/**
 * 客戶的控制層
 * @author Administrator
 *
 */
public class CustomerAction extends ActionSupport implements ModelDriven<Customer>{
    //不要忘記手動new
    private Customer customer=new Customer();
    public Customer getModel() {
        return customer;
    }
    //提供service成員屬性,提供set方法
    private CustomerService customerService;
    public void setCustomerService(CustomerService customerService) {
        this.customerService = customerService;
    }
    /**
     * 保存客戶
     * @return
     */
    public String add(){
        System.out.println("WEB層,保存客戶");
        //方式一:創建web的工廠(action由struts2創建)
        /*WebApplicationContext context=WebApplicationContextUtils.getWebApplicationContext(ServletActionContext.getServletContext());
        CustomerService cs=(CustomerService) context.getBean("customerService");
        //調用方法
        cs.save(customer);*/
        customerService.save(customer);
        return NONE;
    }
}

  spring整合hibernate方式二:(不帶有hibernate.cfg.xml的配置文件)

  這裡準備刪除hibernate的核心配置文件,在刪除之前,需要將其配置文件中的相關內容配置到spring的applicatioinContext.xml文件中取

  1、查看hibernate.cfg.xml文件中的相關內容

      * 資料庫連接基本參數(4大參數)

      * Hibernate相關的屬性

      * 連接池

      * 映射文件

  2、引入配置

  引入連接池

<!-- 先配置C3p0的連接池 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql://192.168.174.130:3306/SSH"/>
        <property name="user" value="root"/>
        <property name="password" value="root"/>
    </bean>

  修改對應的sessionFactory:因為已經沒有了hibernate.cfg.xml的配置文件,所以需要修改該配置,註入連接池

  引入對象映射文件:因為已經沒有了hibernate.cfg.xml的配置文件,不會掃描到該配置文件,需要註入

    <!-- 編寫bean,名稱都是固定的,有spring提供,用來載入hibernate.cfg.xml的配置文件-->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <!--先載入連接池 -->
        <property name="dataSource" ref="dataSource"/>
        <!-- 載入方言,載入可選項 -->
        <property name="hibernateProperties">
            <props>
                <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>
        
        <!-- 引入映射的配置文件 -->
        <property name="mappingResources">
            <list>
                <value>com/clj/domain/Customer.hbm.xml</value>
            </list>
        
        </property>
    </bean>

  現在: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: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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd">
    
    <!-- 先配置C3p0的連接池 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql://192.168.174.130:3306/SSH"/>
        <property name="user" value="root"/>
        <property name="password" value="root"/>
    </bean>
    
    <!-- 編寫bean,名稱都是固定的,有spring提供,用來載入hibernate.cfg.xml的配置文件-->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <!--先載入連接池 -->
        <property name="dataSource" ref="dataSource"/>
        <!-- 載入方言,載入可選項 -->
        <property name="hibernateProperties">
            <props>
                <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>
        
        <!-- 引入映射的配置文件 -->
        <property name="mappingResources">
            <list>
                <value>com/clj/domain/Customer.hbm.xml</value>
            </list>
        
        </property>
    </bean>
    
    <!-- 先配置平臺事務管理器 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
        <!-- 註入事務,session能夠管理事務,工廠能夠創建session -->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>
    
    <!-- 開啟事務的註解 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>
    
    <!-- 配置客戶模塊 -->
    <!-- 強調:配置的Aciton,必須是多列的 -->
    <bean id="customerAction" class="com.clj.web.action.CustomerAction" scope="prototype">
        <!--註意:struts管理action時,基於其中有個struts-plugin的jar包,其中更改了一個
        常量struts.objectFactory.spring.autoWire = name將其打開了,可以自動裝配,只需要提供set方法
        但是此時action由spring管理,自動裝配失效,所以需要手動進行配置註入
        -->
        <property name="customerService" ref="customerService"></property>
    </bean>
    <bean id="customerService" class="com.clj.service.CustomerServiceImpl">
        <property name="customerDao" ref="customerDao"></property>
    </bean>
    <!-- 以後,Dao都需要繼承HibernateDaoSupport,註入sessionFactory -->
    <bean id="customerDao" class="com.clj.dao.CustomerDaoImpl">
        <!--<property name="hibernateTemplate" ref="hibernateTemplate"/>-->
        <!-- 這裡不註入模板類,而是註入sessionFactory,因為模板需要session(封裝了session)-->
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>
    <!-- 配置模板類(hibernate框架提供的,內部封裝了session),此時交給spring管理,如果持久層繼承了HibernateDaoSupport,則無需配置-->
    <!-- <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate">
        註入sessionFactory 
        <property name="sessionFactory"/>
    </bean>-->
</beans>

  此時可以安心的刪除hibernate.cfg.xml文件了

  這樣SSH整合完畢

六、Hibernate模板常用方法

  註意:以下代碼省略了介面中的演示(偷了個懶,相信初學者不會看不懂)

  1)插入:

  持久層

package com.clj.dao;

import java.util.List;

import org.hibernate.criterion.DetachedCriteria;
import org.springframework.orm.hibernate5.HibernateTemplate;
import org.springframework.orm.hibernate5.support.HibernateDaoSupport;

import com.clj.domain.Customer;
/**
 * 持久層
 * 繼承HibernateDaoSupport,內部封裝了HibernateTemplate
 * @author Administrator
 *
 */
public class CustomerDaoImpl extends HibernateDaoSupport implements CustomerDao {
    @Override
    public void update(Customer customer) {
        // TODO Auto-generated method stub
        this.getHibernateTemplate().update(customer);
    }
}

  業務層

package com.clj.service;

import java.util.List;

import org.springframework.transaction.annotation.Transactional;

import com.clj.dao.CustomerDao;
import com.clj.domain.Customer;
/**
 * 客戶的業務層
 * @author Administrator
 *
 */
@Transactional
public class CustomerServiceImpl implements CustomerService{
    private CustomerDao customerDao;
    
    public void setCustomerDao(CustomerDao customerDao) {
        this.customerDao = customerDao;
    }
 @Override
    public void update(Customer customer) {
        // TODO Auto-generated method stub
        customerDao.update(customer);
    }
}

  測試類

package com.clj.test;

import java.util.List;

import javax.annotation.Resource;

import org.junit.Test;

              
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 新建.jsp報錯:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 解決方案: 1.檢查在eclipse中,有沒有配置JDK: 2.檢查在eclipse中,tomcat有沒有配置好 ...
  • 1 微服務的發展 微服務倡導將複雜的單體應用拆分為若幹個功能簡單、松耦合的服務,這樣可以降低開發難度、增強擴展性、便於敏捷開發。當前被越來越多的開發者推崇,很多互聯網行業巨頭、開源社區等都開始了微服務的討論和實踐。Hailo有160個不同服務構成,NetFlix有大約600個服務。國內方面,阿裡巴巴 ...
  • python中的作用域有4種: | 名稱 | 介紹 | | | | | L | local,局部作用域,函數中定義的變數; | | E | enclosing,嵌套的父級函數的局部作用域,即包含此函數的上級函數的局部作用域,但不是全局的; | | B | globa,全局變數,就是模塊級別定義的變數 ...
  • 閱讀目錄 Java JDK 安裝 PATH CLASSPATH 小結 javac 命令 java 命令 小結 生成 jar 包 閱讀目錄 閱讀目錄 Java JDK 安裝 PATH CLASSPATH 小結 javac 命令 java 命令 小結 生成 jar 包 Java JDK 安裝 PATH ...
  • 前言: 必需學會SpringBoot基礎知識 簡介: spring cloud 為開發人員提供了快速構建分散式系統的一些工具,包括配置管理、服務發現、斷路器、路由、微代理、事件匯流排、全局鎖、決策競選、分散式會話等等。它運行環境簡單,可以在開發人員的電腦上跑。 工具: JDK8 apache-mave ...
  • 【步驟】 【說明】 1、什麼是環境變數? 其實就是操作系統的全局變數。 1、為什麼配置PATH? 通過配置path環境變數,我們可以使某個程式,比如javac.exe,在任意目錄下都可以運行,而不用跑到javac存在的目錄下進行dos命令。 比如:可以將QQ.exe所在目錄配置到path中,這樣在任 ...
  • 作為你程式代碼的構建基礎,類和結構體是一種多功能且靈活的構造體。通過使用與現存常量、變數、函數完全相同的語法來在類和結構體當中定義屬性和方法以添加功能。 ...
  • 解析器 (1)api/urls.py (2)views.py (3)通過postman發送Json數據 在後臺可以獲取發過來的Json數據 源碼流程 (1)dispatch (2)initialize_request 獲取所有解析器 (3)get_parsers (4)parser_classes ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...