Struts2中的动态方法调用

本文介绍了Struts2中的动态方法调用,包括如何避免过多Action,以及三种常见调用方法:指定method、叹号方式和通配符方式。通配符方式为官方推荐,通过struts.xml配置启用或禁用动态调用。
摘要由CSDN通过智能技术生成

Struts2中的动态方法调用

一、动态方法调用介绍

​ 在Struts2开发中,默认执行的是execute方法,有时候我们会在一个Action中写多个方法,这时候我们需要在请求中调用我们想调用的方法,而不是采用多写Action的方式。

​ 使用动态方法可以避免Action太多。

二、动态方法调用常见方法

本示例中的Action类代码如下所示:

package blog.wlb.net.oschina.my;

public class SimpleAction {
   
	public String test1(){
   
		System.out.println("执行测试方法1");
		return "test1";
	}
	
	public String test2(){
   
		System.out.println("执行测试方法2");
		return "test2";
	}
	
	public String test3(){
   
		System.out.println("执行测试方法3");
		return "test3";
	}
	
	public String test4
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值