如何解决HTTP状态404 - 没有为动作org.name.action.TutorialAction和结果定义结果?

时间:2015-09-14 16:19:33

标签: java struts2

我在eclipse中编写了一个struts 2项目。在tomcat服务器上启动项目后,每当我在Web浏览器上插入此URL: http://localhost:8080/Struts2Starter/getTutorial.action ,浏览器就会显示此错误:< strong> HTTP状态404 - 没有为动作org.name.action.TutorialAction和结果定义结果

我错过了其他重要的jer文件吗?或者我需要添加convention-plugin-2.3.x.jar吗?或者我需要添加注释吗?

这些是我在WEB-INF / lib中添加的jer文件:

commons-fileupload-1.3.1.jar
commons-io-2.2.jar
commons-lang-2.4.jar
commons-logging-1.1.3.jar
commons-logging-api-1.1.jar
freemarker-2.3.22.jar
javassist-3.11.0.GA.jar
ognl-3.0.6.jar
struts2-core-2.3.24.jar
xwork-core-2.3.24.jar 

这是下面的struts.xml代码:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">        
 <struts>
 <package name="default" extends="struts-default">       
    <action name="getTutorial" class="org.name.action.TutorialAction">
        <result name="success">/success.jsp</result>
        <result name="failure">/error.jsp</result>
    </action>
</package>
 </struts> 

这是下面的TutorialAction类代码:

package org.name.action;
import com.opensymphony.xwork2.ActionSupport;

public class TutorialAction  extends ActionSupport{

    public String execute(){
        System.out.println("Hello From execute() method.");
        return "success";
    }
}

这是下面的web.xml代码:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>Struts2Starter</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>


<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>      
</filter>

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>


</web-app>

在这个文件夹下给出了图片,我添加了我的jsp页面: enter image description here

更新:在清理项目期间发生了此错误:

Errors running builder 'Integrated External Tool Builder' on project 'Struts2Starter'. Variable references non-existent resource : ${workspace_loc:/Java8} Variable references non-existent resource : ${workspace_loc:/Java8}

这是主要原因或其他需要的东西。如何解决这个问题。  如需了解更多信息,请通知我。

2 个答案:

答案 0 :(得分:1)

这看起来像execute()方法返回的值解析为空字符串。检查是否有名为SUCCESS的本地/类/实例变量,其值为空String。

如果返回了结果名称,并且未找到结果,则Struts会给出结果名称错误。例如,结果success已被删除,并且错误为HTTP Status 404 - No result defined for action org.name.action.TutorialAction and result success

通过返回空字符串生成以下屏幕。

enter image description here

答案 1 :(得分:1)

还有另一个文件&#34; commons-lang3xxx.jar&#34;,添加此文件并再次运行。