溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何進(jìn)行ssh整合分解

發(fā)布時(shí)間:2021-11-26 17:02:51 來(lái)源:億速云 閱讀:125 作者:柒染 欄目:移動(dòng)開(kāi)發(fā)

本篇文章給大家分享的是有關(guān)如何進(jìn)行ssh整合分解,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

一、 Spring+Hibernate整合:
Spring整合Hibernate,是做了一個(gè)很大的調(diào)整的,因?yàn)閟pring可以把管理Hibernate的工作都做了,以前的hibernate.cfg.xml文件都去掉了,而將這些內(nèi)容都交給了spring來(lái)管理了。
1、 applicationContext.xml文件中應(yīng)該配置如下內(nèi)容:
Java代碼

//配置數(shù)據(jù)連接類  <bean id=“dataSource”  class=“org.apache.commons.dbcp.BasicDataSource”>  <property name=“driverClassName”  value=“org.gjt.mm.mysql.Driver”>  </property>  <property name=“url” value=“jdbc:mysql://localhost:3306/test”></property>  <property name=“username” value=“root”></property>  </bean>  //配置session工廠類  <bean id=“sessionFactory”  class=“org.springframework.orm.hibernate3.LocalSessionFactoryBean”>  <property name=“dataSource”>  <ref bean=“dataSource” />  </property>  <property name=“hibernateProperties”>  <props>  <prop key=“hibernate.dialect”>  org.hibernate.dialect.MySQLDialect  </prop>  <prop key=“hibernate.show_sql”>true</prop>  </props>  </property>  <property name=“mappingResources”>  <value>com/hejianjiao/vo/Person.hbm.xml</value>  </property>  </bean>  //配置數(shù)據(jù)連接類 <bean id="dataSource"    class="org.apache.commons.dbcp.BasicDataSource">    <property name="driverClassName"     value="org.gjt.mm.mysql.Driver">    </property>    <property name="url" value="jdbc:mysql://localhost:3306/test"></property>    <property name="username" value="root"></property> </bean> //配置session工廠類 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">    <property name="dataSource">     <ref bean="dataSource" />    </property>    <property name="hibernateProperties">     <props>      <prop key="hibernate.dialect">       org.hibernate.dialect.MySQLDialect      </prop>      <prop key="hibernate.show_sql">true</prop>     </props>    </property>    <property name="mappingResources">    <value>com/hejianjiao/vo/Person.hbm.xml</value>    </property> </bean>

2、可以使用spring中的HibernateDAOSupport與HibernateTemplate類來(lái)進(jìn)行數(shù)據(jù)持久化操作:
A、HibernateDAOSupport類中定義了對(duì)session、sessionFactory的操作方法與getHibernateTemplate方法來(lái)獲得一個(gè)HibernateTemplate實(shí)例;
B、HibernateTemplate類中定義了對(duì)數(shù)據(jù)持久化的各種封裝的方法,我們可以用它來(lái)對(duì)數(shù)據(jù)進(jìn)行操作。
因此在使用時(shí),我們可以繼承HibernateDAOSupport類,然后實(shí)例化HibernateTemplate類來(lái)進(jìn)行數(shù)據(jù)持久化。
二、 Spring+Struts2整合:

1、spring配置在web.xml文件中的上下文監(jiān)聽(tīng)器:
Java代碼

<context-param>  <param-name>contextConfigLocation</param-name>  <param-value>/WEB-INF/applicationContext*.xml</param-value>  </context-param>  <listener>  <listener-class>org.springframwork.web.content.ContextLoaderListener</listener-class>  </listener>  <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml</param-value> </context-param>  <listener> <listener-class>org.springframwork.web.content.ContextLoaderListener</listener-class> </listener>2、struts2配置在web.xml文件中的過(guò)濾器: Java代碼 <filter>  <filter-name>struts2</filter-name>  <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>  </filter>  <filter-mapping>  <filter-name>struts2</filter-name>  <url-patter>/*</url-patter>  </filter-mapping>  <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter>  <filter-mapping> <filter-name>struts2</filter-name> <url-patter>/*</url-patter> </filter-mapping>

3、設(shè)置struts.xml文件,就可以使用spring的IOC來(lái)管理struts的Action:
Java代碼

<content name=“struts.objectFactory” value=“spring” >  <content name="struts.objectFactory" value="spring" >

4、第三步設(shè)置后,以后在struts.xml 文件中配置一個(gè)action時(shí),它的class就不是一個(gè)類了,而是在applicationContext.xml文件中定義過(guò)的類的ID,在 struts.xml文件中就只需要引用定義好的類的id 就可以了。
然后特別要注意的一個(gè)問(wèn)題:action是一個(gè)請(qǐng)求就是一個(gè)action對(duì) 象,而在spring中則不是的,它是自動(dòng)分配類的實(shí)例的,是使用的單  態(tài)模式來(lái)生產(chǎn)類的實(shí)例的,不符合action,因此在applicationContext.xml文件中定義每個(gè)action時(shí),都要在類后加上:
Java代碼
scope=“prototype” 屬性 
scope="prototype" 屬性三、 三者組合開(kāi)發(fā):
一般在組合開(kāi)發(fā)時(shí),沒(méi)有什么難的,只要把上面兩步做好就可以是三個(gè)組合開(kāi)發(fā)了。    上圖則是對(duì)于進(jìn)行組合開(kāi)發(fā)時(shí),一般使用的系統(tǒng)架構(gòu):
1、 先從***層開(kāi)發(fā),先開(kāi)發(fā)POJO類,和Hibernate映射文件。它相當(dāng)于系統(tǒng)的數(shù)據(jù)庫(kù)層。
2、 再開(kāi)發(fā)DAO層,它是對(duì)于數(shù)據(jù)進(jìn)行持久化的一層,專門處理各種數(shù)據(jù)增、刪、改、查的功能。并且使用DAO工廠模式,以保證和上層沒(méi)有任何的聯(lián)系,并且可以方便于類與接口的擴(kuò)展。
3、 第三是開(kāi)發(fā)manager層,它相當(dāng)于軟件的業(yè)務(wù)邏輯層,即專門處理各種業(yè)務(wù)邏輯。實(shí)現(xiàn)系統(tǒng)的業(yè)務(wù)處理功能。并且它隔離事務(wù),使與下層的數(shù)據(jù)持久和上層的數(shù)據(jù)操作沒(méi)有任何的聯(lián)系。
4、 Action層,也即軟件的表示層,處理action的接收與回復(fù)。各action由spring管理。
五、 組合開(kāi)發(fā)中的一些問(wèn)題:
1、 在組合開(kāi)發(fā)中,常見(jiàn)的一個(gè)問(wèn)題就是session的管理,當(dāng)我們使用HibernateTemplate操作數(shù)據(jù)庫(kù)時(shí),可以不對(duì)session進(jìn)行顯示的操作,spring可以自動(dòng)處理session的打開(kāi)與關(guān)閉。
我們可以在web.xml文件中顯示的配置一個(gè)session管理的過(guò)濾器,它專門幫助我們關(guān)閉session:
Java代碼

<filter>  <filter-name>lazyLoadingFilter</filter-name>  <filter-class>  org.springframwork.orm.hibernate3.support.OpenSessionInViewFilter  </filter-class>  </filter>  <filter-mapping>  <filter-name>lazyLoadingFilter</filter-name>  <url-pattern>*.action</url-pattern>  </filter-mapping>  注:它一定要在struts2的過(guò)濾器之前。因?yàn)閣eb.xml文件的過(guò)濾器執(zhí)行是有順序的。而session一定在前面進(jìn)行。  <filter>         <filter-name>lazyLoadingFilter</filter-name> <filter-class> org.springframwork.orm.hibernate3.support.OpenSessionInViewFilter </filter-class> </filter>  <filter-mapping>          <filter-name>lazyLoadingFilter</filter-name>          <url-pattern>*.action</url-pattern> </filter-mapping>

注:它一定要在struts2的過(guò)濾器之前。因?yàn)閣eb.xml文件的過(guò)濾器執(zhí)行是有順序的。而session一定在前面進(jìn)行。它會(huì)在所有的action處理完了,頁(yè)面顯示完了,就會(huì)自動(dòng)關(guān)閉session。
六、 spring事務(wù)處理
1、事務(wù)的處理也交給了spring來(lái)管理,要在applicationContext.xml文件中上配置事務(wù)管理類:
Java代碼
//實(shí)施事務(wù)管理的bean

<bean id=”transactionManager”  class=”org.springframwork.orm.hibernate3.HibernateTransactionManager”>  <property name=”sessionFactory”>  <ref bean=”sessionFactory” />  </property>  </bean>  //實(shí)施事務(wù)管理的bean <bean id=”transactionManager” class=”org.springframwork.orm.hibernate3.HibernateTransactionManager”>        <property name=”sessionFactory”>            <ref bean=”sessionFactory” /> </property>

</bean>它是通過(guò)sessionFactory來(lái)管理,因此在傳進(jìn)來(lái)一個(gè)sessionFactory來(lái)接管事務(wù)處理。
2、 聲明式事務(wù)處理:
在spring中對(duì)事務(wù)進(jìn)行管理時(shí),可以顯示地進(jìn)行事務(wù)處理的定義:
Java代碼

<tx:advice id=”txAdvice” transaction-manager=”transactionManager”>  <tx:attributes >

//propagation表示的是事務(wù)的傳播特性,使用required時(shí),是當(dāng)檢測(cè)到add開(kāi)頭的方法時(shí),就看此時(shí)有沒(méi)有開(kāi)啟的事務(wù),如果有則將方法放進(jìn)事務(wù)中去,如果沒(méi)有,則新建一個(gè)事務(wù)。然后將方法放進(jìn)去。

<tx:method name=”add*” propagation=”REQUIRED”>  <tx:method name=”delete*” propagation=”REQUIRED”>  <tx:method name=”update*” propagation=”REQUIRED”>  //如果檢測(cè)到其它的方法,則給其只讀數(shù)據(jù)庫(kù)的屬性。即當(dāng)本方法在讀時(shí),其它的方法不能再去寫(xiě)了。保證一個(gè)事務(wù)的完整性。  <tx:method name=”*” read-only=”true”>  </tx:attributes>  </tx:advice>  //給事務(wù)添加的屬性 <tx:advice id=”txAdvice” transaction-manager=”transactionManager”>      <tx:attributes >

//propagation表示的是事務(wù)的傳播特性,使用required時(shí),是當(dāng)檢測(cè)到add開(kāi)頭的方法時(shí),就看此時(shí)有沒(méi)有開(kāi)啟的事務(wù),如果有則將方法放進(jìn)事務(wù)中去,如果沒(méi)有,則新建一個(gè)事務(wù)。然后將方法放進(jìn)去。
          <tx:method name=”add*” propagation=”REQUIRED”>
          <tx:method name=”delete*” propagation=”REQUIRED”>
           <tx:method name=”update*” propagation=”REQUIRED”>
//如果檢測(cè)到其它的方法,則給其只讀數(shù)據(jù)庫(kù)的屬性。即當(dāng)本方法在讀時(shí),其它的方法不能再去寫(xiě)了。保證一個(gè)事務(wù)的完整性。
           <tx:method name=”*” read-only=”true”>
</tx:attributes>
</tx:advice>對(duì)于事務(wù)的其它傳播屬性,則可以參考其它文檔進(jìn)行相關(guān)的了解。
上 一個(gè)配置是針對(duì)于所有包中類的事務(wù)處理方法的設(shè)置。下面一段是<aop:config/> 的定義,它確保由 &lsquo;txAdvice&rsquo;  bean定義的事務(wù)通知在應(yīng)用中合適的點(diǎn)被執(zhí)行。首先我們定義了 一個(gè)切面,它匹配 HibernateDAO 接口定義的所有操作,我們把該切面叫做  &lsquo;allManagerMethod&rsquo;。然后我們用一個(gè)通知器(advisor)把這個(gè)切面與 &lsquo;txAdvice&rsquo; 綁定在一起,表示當(dāng)  &lsquo;allManagerMethod&rsquo; 執(zhí)行時(shí),&rsquo;txAdvice&rsquo; 定義的通知事務(wù)邏輯將被執(zhí)行。這就是AOP切面工程:
Java代碼

Java代碼 <aop:config>  <aop:pointcut id=”allManagerMethod”  expression=”execution(* com.hejianjiao.hibernate.HibernateDAO.*(..))”/>  //調(diào)用上面配置的事務(wù)屬性,可以將它給本aop pointcut。  <aop:advisor advice-ref=”txAdvice” pointcut-ref=”allManagerMethod”/>  //如果還有其它的定義,則可以再加上pointcut、advisor來(lái)定義本切面點(diǎn)的事務(wù)邏輯。  </aop:config>  <aop:config>       <aop:pointcut id=”allManagerMethod” expression=”execution(* com.hejianjiao.hibernate.HibernateDAO.*(..))”/> //調(diào)用上面配置的事務(wù)屬性,可以將它給本aop pointcut。       <aop:advisor advice-ref=”txAdvice” pointcut-ref=”allManagerMethod”/> //如果還有其它的定義,則可以再加上pointcut、advisor來(lái)定義本切面點(diǎn)的事務(wù)邏輯。

</aop:config> //expression中的內(nèi)容是要執(zhí)行本切面的一個(gè)接口,中的所有方法:如:一個(gè)接口中定義了操作數(shù)據(jù)的方  法:com.hejianjiao.hibernate.HibernateDAO,則下面execution括號(hào)中的內(nèi)容就為:*  com.hejianjiao.hibernate.HibernateDAO.*(..)。而如果在com.hejianjiao.hibernate  包中還有其它的類也有操作方法,我們要一起定義的話,就可以寫(xiě)為:*  com.hejianjiao.*.*(..),其中(..)表示的是方法,前面的第一個(gè)是操作的接口或者類。
上面的配置將為由 &lsquo;HibernateDAO&rsquo; 定義的bean創(chuàng)建一個(gè)代理對(duì)象,這個(gè)代理對(duì)象被裝配了事務(wù)通知,所以當(dāng)它的相應(yīng)方法被調(diào)用時(shí),一個(gè)事務(wù)將被啟動(dòng)、掛起、被標(biāo)記為只讀,或者其它(根據(jù)該方法所配置的事務(wù)語(yǔ)義)

以上就是如何進(jìn)行ssh整合分解,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

ssh
AI