当前位置: 代码迷 >> Java Web开发 >> No result defined for action com.tes.web.action.FirstAction and result success,该怎么处理
  详细解决方案

No result defined for action com.tes.web.action.FirstAction and result success,该怎么处理

热度:6985   发布时间:2013-02-25 21:18:17.0
No result defined for action com.tes.web.action.FirstAction and result success
action代码
public String excute() throws Exception {
if (getNum() > 0) {
return "positive";
} else {
return "negative";
}
}
struts.xml配置文件
<package name="struts2" extends="struts-default" namespace="/s">
<action name="sum" class="com.tes.web.action.FirstAction">
<result name="positive">/positive.jsp</result>
<result name="nagetive">/negative.jsp</result>
</action>
</package>

跳转的时候就报这个错误

------解决方案--------------------------------------------------------
你再加个result 为 SUCCESS 试一下 。
------解决方案--------------------------------------------------------
是execute,不是excute
你action里少写了个e
  相关解决方案