<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>
|