首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2的动态步骤以及通配符使用

2013-04-20 
struts2的动态方法以及通配符使用?xml version1.0 encodingUTF-8 ?!DOCTYPE struts PUBLIC-//Ap

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}是可以在任何地方使用的。

?

?

热点排行