No result defined for action com.action.Actionxxx and result xxx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了No result defined for action com.action.Actionxxx and result xxx相关的知识,希望对你有一定的参考价值。

报错:No result defined for action com.action.Actionxxx and result xxx

刚学Struts2不久,写的第一个Action就遇到这个问题,有两个原因:

1.Action类类名命名不能使用数字,如:Action1,服务器启动不报错,但访问Action1并运行其方法时,无法找到配置好的Result,即在映射过程中会丢失return的值。
(注意:Action类类名命名不能使用Action,以免和框架中的特殊词混淆而导致服务器启动过程中报错)

解决方法,在将Action的类名写成
有意义的英文单词+Action,如:LoginAction或ActionLogin,也可以只写成有意义的单词

2action的配置中没有声明相应的结果:(<!-- -->中为被注释的部分,即未配置result)

<action name="action1" class="com.action.Actionxxx">
            <!-- <result name="yes">/yes.jsp</result>
            <result name="no">/no.jsp</result> -->

</action>

解决方法:加上被注释的部分。

以上是关于No result defined for action com.action.Actionxxx and result xxx的主要内容,如果未能解决你的问题,请参考以下文章

struts异常:No result defined for action

No result defined for action com.action.Actionxxx and result xxx

HTTP Status 404 - No result defined for action com.csdhsm.struts.action.LoginAction and result error

No result defined for action cn.crm.action.LinkManAction and result input

[Struts2] No result defined for action ... and result input &amp; Invalid field value for field

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