首页 > 其他 > 详细

struts_2_Action类中方法的动态调用

时间:2014-08-22 09:22:46      阅读:305      评论:0      收藏:0      [点我收藏+]

(一)直接调用方法(不推荐使用)

1Action类:

private String savePath;

	public String getSavePath() {
		return savePath;
	}

	public void setSavePath(String savePath) {
		this.savePath = savePath;
	}

	public String other() {
		savePath = "other";
		return "success";
	}

	public String execute() {
		savePath = "execute";
		return "success";
}

2struts.xml文件的配置:

<struts>
	<package name="package" namespace="/test" 
  extends="struts-default">
		<action name="emp" class="struts.employeeAction" 
  method="execute">
			<result name="success">/index.jsp</result>
		</action>
	</package>
</struts>

当输入:http://localhost:8080/Struts_3/test/emp.action

时会输出:execute 即调用execute()方法;

当输入:http://localhost:8080/Struts_3/test/emp!other.action

时会输出:other 即调用other()方法。

(二)使用通配符(推荐使用)

1)Aciton类与(一)中的相同

2)struts.xml文件的配置:

<struts>
	<package name="package" namespace="/test" 			
  extends="struts-default">
		<action name="emp*" class="struts.employeeAction" 
  method="{1}">
			<result name="success">/index.jsp</result>
		</action>
	</package>
</struts>

访问路径:http://localhost:8080/Struts_3/test/empexecute

这时会输出:execute 即调用execute()方法;

访问路径:http://localhost:8080/Struts_3/test/empother

这时会输出:other 即调用other()方法。






struts_2_Action类中方法的动态调用,布布扣,bubuko.com

struts_2_Action类中方法的动态调用

原文:http://blog.csdn.net/u012963457/article/details/38750333

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!