Struts2动态方法调用

原文网址

在Struts2中动态方法调用有三种方式,动态方法调用就是为了解决一个Action对应多个请求的处理,以免Action太多

第一种方式:指定method属性

struts2.xml:
<action name="chainAction"class="chapter2.action.Chapter2Action"
method="add">
<result name=" add "type="chain"> add.jsp </result>
</action>  
<action name="plainText"class="chapter2.action.Chapter2Action"
method="plainText">
<result name="plainText"type="plainText">plaintext.jsp</result>
</action>


第二种方式:感叹号方式(需要开启),官网不推荐使用这种方式,建议大家不要使用.
用这种方式需要先开启一个开关
<constantname="struts.enable.DynamicMethodInvocation" value="true"/> 
将此常量设置为true,这种方式才能使用
struts2.xml:
<action name="chainAction"class="chapter2.action.Chapter2Action" >
<result name=" add "type="chain"> add.jsp </result>
</action> 

Action类里面写一个add方法
页面就可以<ahref=" chainAction!add ">add</a>来访问add方法

如果配置了.action后缀,页面就写: <ahref=" chainAction!add.action ">add</a>


第三种方式:通配符方式(官网推荐使用)
首先得关闭开关
<constantname="struts.enable.DynamicMethodInvocation" value="false"/> 
struts2.xml:
<action name="chainAction_*"class="chapter2.action.Chapter2Action""method="{1}">
<resultname="{1}">{1}.jsp</result>
</action>

页面: <ahref=" chainAction _ add ">add</a>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值