`

Struts2开发中的 No result defined for action 错误

 
阅读更多
error.jsp中的错误提示:No result defined for action zqq.action.LoginAction and result input 
struts.xml中的映射:
  <global-results>
   <!-- 下面定义的结果对所有的Action都有效 -->
   <result name="exception">/error.jsp</result>
   <result name="success">/success.jsp</result>
  </global-results>
  <global-exception-mappings>
   <!-- 指Action抛出Exception异常时,转入名为exception的结果。 -->
   <exception-mapping exception="java.lang.Exception" result="exception"/>
  </global-exception-mappings>
  <action name="Login" class="zqq.action.LoginAction">
       <result name="failure">/login.jsp</result>
  </action>
LoginAction的代码:
public String execute() throws Exception{
 return SUCCESS;
}

success你已经定义成全局的result了,看你贴出来的代码没什么问题呀。
从错误信息来看,是说没有定义result。 你有没有配置拦截器<interceptor-ref name="validation"/>?如果有的话,去掉所有的拦截器。 包括这个缺省的拦截器栈:<default-interceptor-ref name="defaultStack"/>
分享到:
评论

相关推荐

    jsp\No result defined for action and result input.doc

    在Struts2框架中开发Web应用程序时,可能会遇到一个名为“No result defined for action and result input”的错误消息。这个错误通常发生在开发者试图通过表单提交数据到后端处理逻辑时,而这些数据未能通过验证...

    No result defined for action.doc

    在IT领域,尤其是在Web开发中,遇到“No result defined for action”这类错误是常见的问题,尤其当使用Struts2框架时更为突出。此类错误通常指向在控制器(Action)中未正确配置或实现结果集(Result),导致请求...

    配置struts2常见错误

    No result defined for action ***Action and result success **问题描述**: 当执行某个Action后,出现“没有定义success结果”的错误。 **解决方法**: 这意味着在`struts.xml`中未正确配置`success`结果。为了...

    struts2错误集合.txt

    错误信息:“No result defined for action com.upload.UploadAction and result input”。 这个错误通常是由于配置文件中没有正确定义动作的结果导致的。确保在`struts.xml`中为每个动作定义了合适的`result`标签...

    struts2 的异常收集

    No result defined for action cn.itcast.user.web.action.UserAction and result error ``` 此异常表明在`struts.xml`中没有为指定的动作定义结果。例如,如果期望动作在发生错误时转向特定的JSP页面,但配置文件...

    精心整理的ssh2 一些错误问题的记录(推荐)

    ### 错误八:No result defined for action... and result... 这类错误通常出现在Struts框架中,当在一个动作中定义的结果没有在配置文件(如struts.xml)中正确配置时发生。确保每个动作的结果都在配置文件中有...

    我的JAVA开发工作笔记

    在提供的内容中提到了一个错误 `No result defined for action com.sxit.smxt.action.XXXAction and result input`。这意味着Struts2框架无法找到对应Action的`input`结果定义。 #### 解决方案: - **检查配置文件*...

    strut2上传文件注意

    如果缺少了`enctype="multipart/form-data"`这一设置,尝试上传文件时可能会遇到`No defined action and result input`等错误。 #### 三、文件临时存储目录的配置 为了确保文件上传过程中的稳定性,还需要在`...

    SSH错误集中分析.

    4. **Action配置**:Struts2的Action配置可能出错,检查struts.xml文件中Action的配置,确保namespace、actionName、result等属性正确。 三、Hibernate面对的错误 1. **懒加载异常**:如果在Session关闭后尝试访问...

    struts_2.3.12GA_API文档(chm版本)

    Stops the action invocation immediately (by throwing a PauseException) and causes the action invocation to return the specified result, such as Action.SUCCESS, Action.INPUT, etc. void ...

Global site tag (gtag.js) - Google Analytics