Struts2.3动态调用报 No result defined for action 错误

struts 2.3.16 采用动态调用发现不工作报404 not found,网上查找原因:

1.因为:struts2中默认不允许使用DMI

所以:需要在配置文件中打开:<constant name="struts.enable.DynamicMethodInvocation" value="true"/>

修改发现报No result defined for action

2.错误信息来看,是说没有定义result。你有没有配置拦截器<interceptor-ref name="validation"/>?如果有的话,去掉所有的拦截器。包括这个缺省的拦截器栈:<default-interceptor-ref name="defaultStack"/>

struts调用action的3种方式:(引至互联网)

动态方法调用在Struts2中动态方法调用有三种方式,动态方法调用就是为了解决一个Action对应多个请求的处理,以免Action太多第一种方式:指定method属性这种方式我们前面已经用到过,类似下面的配置就可以实现<action name="chainAction" class="chapter2.action.Chapter2Action"method="chainAction"><result name="chainAction" type="chain">redirect</result></action> <action name="plainText" class="chapter2.action.Chapter2Action"method="plainText"><result name="plainText" type="plainText">/WEB-INF/JspPage/chapter2/plaintext.jsp</result></action> 第二种方式:感叹号方式(需要开启),官网不推荐使用这种方式,建议大家不要使用.用这种方式需要先开启一个开关<constant name="struts.enable.DynamicMethodInvocation" value="true" /> 将此常量设置为true,这种方式才能使用,使用见示例Actionpackage chapter3.action;public class Chapter3Action {public String result1(){ return "result1";}public String result2(){ return "result2";}} Jsp中访问方式<body><a href="${basePath}/chapter3/chapter3Action!result1">result1</a><br><a href="${basePath}/chapter3/chapter3Action!result2">result2</a><br></body> 如果配置了后缀,必须这样写:/chapter4/chapter4Action!create.actionXML中配置方式<package name="chapter3" namespace="/chapter3" extends="struts-default"> <action name="chapter3Action" class="chapter3.action.Chapter3Action"><result name="result1">/WEB-INF/JspPage/chapter3/result1.jsp</result><result name="result2">/WEB-INF/JspPage/chapter3/result2.jsp</result><result name="chapter3">/WEB-INF/JspPage/chapter3/chapter3.jsp</result> </action></package> 第三种方式:通配符方式(官网推荐使用)首先得关闭开关<constant name="struts.enable.DynamicMethodInvocation" value="false" /> 这一种方式是由第一种转变过来的,我们可以看到,第一种方式有很多重复的代码,那么我们可以进行变形,看下面的代码<action name="chapter3_*" class="chapter3.action.Chapter3Action"method="{1}"><result name="test">/…/test.jsp</result></action> chapter3_*这里的*就是你呆会要匹配的字符串,即你在后面的请求中得这样写 chapter3_create 或 chapter3_update注意,这时你action中必须有create和update方法与之匹配,甚至还可以这样匹配<action name="chapter3_*" class="chapter3.action.Chapter3Action"method="{1}"><result name="test">/…/{1}.jsp</result></action> 但是这时一定要有对应的JSP页面存在,并且相应的路径不能错,这就对我们的命名进行了强制性的规定,一定要规范.课堂示例:Actionpublic class Chapter4Action extends ActionSupport {public String list(){ return "list";}public String create(){ return "create";}public String index(){ return "index";}} XML:<action name="chapter4_*" class="chapter4.action.Chapter4Action" method="{1}"><result name="{1}">/WEB-INF/JspPage/chapter4/chapter4_{1}.jsp</result></action> 关于通配符匹配的优先权:(1)如果struts.xml里面有对应的action name ,就算它有其他通配符匹配的,都优先对应完全相同的。比如 有一个 action name 是 "user_add" 还有一个是 "user_*"。现在,有一个请求是 "user_add.action ",那么,,它会优先匹配"user_add " 。(2)如果一个action name对应于两个带通配符的action name 那么,需要看这个配置谁在前面,它匹配写在前面的比如 有一个 action name 是 "*_*" 还有一个是 "user_*" ,现在,有一个请求是 "user_add.action ",.那么它会优先匹配写在前面的那个action(3)任何带"*"的action name 优先权都是一样的,不是说带一个"*"的优先权就比带两个"*" 的高.总结:因此我们应该把具有含有最多通配符的Acton配置放在最后,否则Struts2一一匹配所有的Action,这会降低程序的效率。

版权声明:本文为博主原创文章,未经博主允许不得转载。

生活是一段奇妙的旅行,就在那一去无返的火车上。

Struts2.3动态调用报 No result defined for action 错误

相关文章:

你感兴趣的文章:

标签云: