您的位置:首页 > 编程语言 > Java开发

Struts2配置文件通配符的使用

2013-06-24 17:04 447 查看

Struts2配置文件中使用通配符收藏

形式一:调用相同Action中的不同方法

<action name="*Action" method="{1}" class="com.system.web.action.LoginAction">
<result name="input">/login.jsp</result>
<result name="success">/welcom.jsp</result>
<result name="error">/error.jsp</result>
</action>


其中表达式{1}的值为name属性值中第一个*的值

如果用户请求的URL为loginAction.action,则调用com.system.web.action.LoginAction中的login方法

如果用户请求的URL为registerAction.action,则调用com.system.web.action.LoginAction中的register方法

形式二:调用不同Action中的execute方法

<action name="*Action" class="com.system.web.action.{1}Action">
<result name="input">/login.jsp</result>
<result name="success">/welcom.jsp</result>
<result name="error">/error.jsp</result>
</action>


上面没有出现method属性,故默认调用对应action的execute方法

如果用户请求的URL为LoginAction.action,则调用com.system.web.action.LoginAction中的execute方法

如果用户请求的URL为RegisterAction.action,则调用com.system.web.action.RegisterAction中的execute方法

形式三:动态结果

<action name="FlowMonitor_*" method="{1}" class="com.monitor.web.action.FlowMonitorAction">
<result name="init">/pages/monitor/flowMonitor.jsp</result>
<result name="table">/pages/monitor/flowMonitorBigTable.jsp</result>
<result>/{1}.jsp</result>
</action>

当处理结果是init时,会转到/pages/monitor/flowMonitor.jsp

当处理结果是success时,如果FlowMonitor_Query.action,则会执行FlowMonitorAction中的Query方法,并且跳转到/Query.jsp页面;

如果FlowMonitor_delete.action,则会执行FlowMonitorAction中的delete方法,并且跳转到/delete.jsp页面
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: