Struts2 Web应用程序404错误

时间:2016-06-10 16:48:30

标签: java eclipse struts2 http-status-code-404

我正在使用

  • Eclipse 4.5.2
  • Apache Tomcat 7.0.34
  • Struts 2.5

当我在Eclipse中运行项目时,出现404错误。

404错误:

我项目中的代码如下:

的web.xml

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Struts 2 Web Application</display-name>

  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
  </filter>
<!-- 
   <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
 -->
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

<welcome-file-list>
  <welcome-file>welcome</welcome-file>
  <welcome-file>login</welcome-file>
</welcome-file-list>

</web-app>

的login.jsp

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
</head>

<body>
<h1>Struts 2 localization example</h1>

<s:form action="validateUser" namespace="/user">

<s:textfield key="global.username" name="username" />
<s:password key="global.password" name="password"/> 
<s:submit key="global.submit" name="submit" />

</s:form>

<s:url var="localeEN" namespace="/" action="locale" >
   <s:param name="request_locale" >en</s:param>
</s:url>
<s:url var="localezhCN" namespace="/" action="locale" >
   <s:param name="request_locale" >zh_CN</s:param>
</s:url>
<s:url var="localeDE" namespace="/" action="locale" >
   <s:param name="request_locale" >de</s:param>
</s:url>
<s:url var="localeFR" namespace="/" action="locale" >
   <s:param name="request_locale" >fr</s:param>
</s:url>

<s:a href="%{localeEN}" >English</s:a>
<s:a href="%{localezhCN}" >Chinese</s:a>
<s:a href="%{localeDE}" >German</s:a>
<s:a href="%{localeFR}" >France</s:a>

</body>
</html>

的welcome.jsp

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>

<body>
<h1>Struts 2 localization example</h1>

<h4>
<s:property value="username"/>
</h4>

</body>
</html>

struts.xml中

<constant name="struts.custom.i18n.resources" value="global" />
<constant name="struts.devMode" value="true" />

<package name="user" namespace="/user" extends="struts-default">
    <action name="login">
        <result>pages/login.jsp</result>
    </action>
    <action name="validateUser" class="com.mkyong.user.action.LoginAction">
        <result name="SUCCESS">pages/welcome.jsp</result>
        <result name="input">pages/login.jsp</result>
    </action>
</package>

<package name="default" namespace="/" extends="struts-default">
    <action name="locale" class="com.mkyong.common.action.LocaleAction">
        <result name="SUCCESS">user/pages/login.jsp</result>
    </action>
</package>


<package name="emptyaction" namespace="/" extends="default">
<default-action-ref name="" />
<action name="">
    <result type="redirect">/</result>
</action>
</package> 

结构 我的项目结构是:

enter image description here

2 个答案:

答案 0 :(得分:2)

在Struts 2.5中,不推荐使用FilterDispatcher。它自Struts 2.1.3以来已被弃用,不应在较新版本中使用。

  

从Struts 2.5开始,所有过滤器都转移到专用包,请参阅   例子:

<web-app id="WebApp_9" 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">

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

resource not available错误来自Tomcat,因为它无法找到根文件夹的资源,例如欢迎文件index.jsp

可以在welcome-file-list

中使用web.xml
<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

如果您不想使用welcome-file-list,那么您应该映射&#34;默认&#34;对具有root("/")命名空间的包执行操作(使用空名称)。

例如

<package name="root" namespace="/" extends="struts-default">

  <!-- root -->

  <action name="">
    <result>/user/pages/welcome.jsp</result>
  </action>

答案 1 :(得分:0)

我猜是因为你还没有告诉它要渲染什么。 Web上下文的根目录中没有内容,您也没有在web.xml中指定欢迎文件。

尝试添加&#34; /user/pages/welcome.jsp"可能很有用; (您尚未向我们展示的页面)到您的浏览器网址,看看它是否呈现了&#34; welcome.jsp&#34;页。