struts 2 - 未映射动作类

时间:2012-07-25 02:21:11

标签: struts2

我开始研究struts 2.我按照示例here

struts.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
   "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
   "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
   <package extends="struts-default">
      <action name="hello" 
            class="com.tutorialspoint.struts2.HelloWorldAction" 
            method="execute">
            <result name="success">/HelloWorld.jsp</result>
      </action>
   </package>
</struts>

的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>HelloWorld3</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>
</web-app>

的index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
   pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
   <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello World</title>
</head>
<body>
   <h1>Struts2</h1>
   <form action="hello">
      <label for="name">Please enter your name</label><br/>
      <input type="text" name="name"/>
      <input type="submit" value="Say Hello"/>
   </form>
</body>
</html>

HelloWorldAction.java

package com.tutorialspoint.struts2;

public class HelloWorldAction{
   private String name;

   public String execute() throws Exception {
      return "success";
   }

   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }
}

但在运行并提交表单后,会发生404错误。

type: Status report

message: /HelloWorld3/hello

description:The requested resource (/HelloWorld3/hello) is not available.

它不会在控制台中产生任何错误。我认为动作类没有被映射。我知道这种错误对于所有struts初学者来说都很常见,但我发誓自从昨天以来我一直在谷歌搜索。

struts.xml在/ src /里面,我也尝试将它放在WEB-INF / classes中,但仍然没有运气。

我正在里面使用eclipse gallileo和tomcat 6。

非常感谢回复。

4 个答案:

答案 0 :(得分:0)

您的类可以扩展ActionSupport类或Action Interface,然后它只会成为一个动作类。并且无需调用方法默认执行,它将调用execute方法。如果你要覆盖它,则需要提及该方法名称。

并非强制要求使用ActionSupport类。这基本上是一个帮助类,它为您提供了许多开箱即用的功能,但同时Struts2框架不要求使用此类,它只需要一个返回类型为String的动作类的入口方法,它可以抛出一般异常

除了验证或国际化之外,此类还提供了许多其他功能,如操作级别错误等。

<action name="hello" 
            class="com.tutorialspoint.struts2.HelloWorldAction">


    package com.tutorialspoint.struts2;

    public class HelloWorldAction extends ActionSupport{
       private String name;

       public String execute() throws Exception {
          return "success";
       }

       public String getName() {
          return name;
       }

       public void setName(String name) {
          this.name = name;
       }
    }

答案 1 :(得分:0)

我的不好,只是意识到web.xml与教程中的web.xml不一样。另外,我忘了在struts.xml中指定包名称。在纠正这些之后,我在控制台中遇到了错误,

java.lang.NoClassDefFoundError: org/apache/commons/lang3/StringUtils

为了解决这个问题,我在commons-lang3-x.y目录中添加了WEB-INF/lib以及要添加的教程所需的其他jar。

答案 2 :(得分:0)

commons-lang3.x.y.z jarcommons-fileupload-x.y.z jar添加到buildpath以避免'resource not available'错误

答案 3 :(得分:0)

http://viralpatel.net/blogs/tutorial-create-struts-2-application-eclipse-example/

您可以使用jar文件获取Simple Struts 2示例演示。