2

我正在使用 Struts2 制作这个 hello world 应用程序,我遇到了一个

HTTP Status 404 - /HelloStruts2/

这是我的web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
  <display-name>HelloStruts2</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>

这是我的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 name="basicstruts2" extends="struts-default">

        <action name="index">
            <result>WEB-INF/index.jsp</result>
        </action>

        <action name="hello" 
            class="actions.HelloWorldAction" method="execute">
            <result name="success">/HelloWorld.jsp</result>
        </action>

    </package>

</struts>

这是我的应用程序中的 jar 列表

commons-fileupload-1.2.2.jar
commons-io-2.0.1.jar
commons-logging-api-1.1.jar
freemarker-2.3.19.jar
javassist-3.15.0-GA.jar
jstl-1.2.jar
ognl-3.0.5.jar
struts2-core-2.3.7.jar
xwork-core-2.3.7.jar
4

4 回答 4

2

我已经修复它,原来我只需要commons-langjar 到 maylib目录。

于 2012-12-05T10:31:36.023 回答
1

在 web.xml 中尝试以下代码段(在 struts 过滤器用户模式 ​​.action 中)

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>*.action</url-pattern>
</filter-mapping>
于 2012-12-05T10:25:09.780 回答
0

这是罐子的问题。请检查以下罐子。我有同样的问题,我用下面的罐子解决了。

commons-fileupload-1.2.1
commons-io-1.3.2
commons-logging-1.0.4
commons-logging-api-1.1
freemarker-2.3.16
javassist-3.14.0-GA
log4j-1.2.16
ognl-3.0
struts2-core-2.2.1.1
xwork-core-2.2.1.1
于 2012-12-05T10:22:01.990 回答
0

我有同样的问题,我努力解决了好几个小时,即使我放置了上面提到的合适的罐子。

我遇到了这个问题,因为 apache tomcat 的 common->lib 文件夹下有太多 jars 文件导致问题。

所以

1) 整齐地保存 jars 和依赖项 2) 检查 web-inf 的 lib 文件夹下的 jars 是否存在依赖项。3)检查包含相同类但具有不同版本的罐子。

当我卸载tomcat并重新安装它时,我找到了解决方案。

于 2013-11-18T13:55:54.343 回答