struts2的动态方法以及通配符使用
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"><struts> <constant name="struts.enable.DynamicMethodInvocation" value="false"></constant> <constant name="struts.configuration.xml.reload" value="true"></constant> <package name="hello" namespace="/test" extends="struts-default"> <action name="helloworld_*" method="{1}" ><result name="succes">/WEB-INF/page/hello.jsp</result> </action> </package> </struts>
?
?? 我们只需要在action的名称后面加上一个
?
*,然后在method用{1}去获取到这个名称,就可以请求到具体的方法。列入helloword_add这样就可以到达action的add方法。注意的是{1}是可以在任何地方使用的。
?
?