问题描述
按照以往的开发方式。struts的映射都是在xml中写出配置,然后class写别名交给spring管理,现在项目使用*_*的配置,无法写别名了,这样的写法怎么才能把struts2交给spring管理?
解决方案
1、struts2 <action name="*/*" class="/front/{1}Action" method="{2}">2、spring <bean name="/front/expertAction" class="cn.javass.brtd.expert.web.front.action.ExpertAction" scope="prototype">
解决方案二:
<action name="*_*" class="{1}" method="{2}">例如 请求testAction_test.actionclass testAction(Spring 管理的 Action)method test注意和Spring管理的Action名字一样就行
时间: 2024-10-01 11:20:12