首页 > 代码库 > struts_2_Action类中方法的动态调用
struts_2_Action类中方法的动态调用
(一)直接调用方法(不推荐使用)
1)Action类:
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"; }
2)struts.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()方法。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。