快速业务通道

Hibernate与Struts2和Spring组合开发 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-07-04
<url-pattern>*.action</url-pattern> </filter-mapping>

Hibernate与Struts2和Spring组合开发(4)

时间:2011-04-16

4. 编写 Action 类。

5. 配置 struts.xml 文件。

struts.xml <!DOCTYPE struts PUBLIC     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"     "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.objectFactory" value="spring" />     <include file="struts-default.xml"/>       <package name="default" extends="struts-default">       <action name="hello" class="helloBean">         <result>hello.jsp</result>       </action>   ....     </package> </struts>

6. 修改 applicationConext.xml,默认情况下,Spring 从下面的文件中寻找为 action 所做的配置。

<?xml version="1.0" encoding="UTF-8"?> <beans default-autowire="byName">     <bean id="helloBean" class="cn.com.jobedu.HelloWorld"  scope="prototype" />     ... </beans>

7.编写所需要的 JSP 文件。

8. 部署,调试整个项目。

<!-- 配置事务管理器 -->  <bean id="transactionManager"  class="org.springframework.orm.hibernate3.HibernateTransactionManager">   <property name="sessionFactory">   <ref local="sessionFactory"/>   </property> </bean>

<!-- 配置事务特性 ,配置 add、delete 和 update 开始的方法,事务传播特性为

required-->    <tx:advice id="txAdvice" transaction-manager="transactionManager">     <tx:attributes>      <tx:method name="add*" propagation="REQUIRED"/>      <tx:method name="delete*" propagation="REQUIRED"/>      <tx:method name="update*" propagation="REQUIRED"/>      <tx:method name="*" read-only="true"/>     </tx:attributes>    </tx:advice>

<!-- 配置那些类的方法进行事务管理, 当前 cn.com.jobedu.crm.service 包中的子包、

类中所有方法需要,还需要参考 tx:advice 的设置 -->

<aop:config>     <aop:pointcut id="allManagerMethod" expression="execution (*  cn.com.jobedu.crm.service.*.*(..))"/>     <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/>    </aop:config>

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号