所请求的资源在 Struts 2 Hello World 中不可用

问题描述 投票:0回答:1

我在这个示例中遇到问题。

我使用 Eclipse for Java EE 和 Apache Tomcat 8。

我的项目结构:

http://s29.postimg.org/xtevpxgef/stackstruts2.png

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>Hello World Struts 2</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
                     
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>

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

其他代码文件与Struts网站相同。

当我运行

index.jsp
文件时,出现以下错误:

HTTP 状态 404 - /helloworld/index.jsp

输入状态报告
消息/helloworld/index.jsp 描述 请求的资源不可用。

有人能找出我无法运行它的原因吗?

eclipse struts2 http-status-code-404
1个回答
1
投票

首先使用 Maven 配置创建项目,要访问 Struts 操作,您应该使用 url

第 6 步 - 构建 WAR 文件并运行应用程序

执行

mvn clean
包来创建war文件。

将 war 文件复制到您的 Servlet 容器。在你的 Servlet 之后 容器成功部署 war 文件转到此 URL

http://localhost:8080/helloworld/index.action
你应该看到的地方 以下:


(来源:apache.org

Web 应用程序上下文是部署应用程序的位置。在文档网址中它是

/helloworld
,在图像上它是
/Hello_World_Struts2_Ant
。将其用作网址的一部分。您在部署期间使用哪个应用程序上下文并不重要,但 url 取决于它。如果您想更改 Web 应用程序上下文,您应该阅读 Java - 如何在 Eclipse 中更改动态 Web 项目的上下文根。在上下文之后,您可以使用带有
.action
扩展名的操作名称来执行操作。

不要使用像

localhost:8080/helloworld/index.jsp
这样的 URL,因为您可能无法获取资源,因为它已经由 Web 服务器处理。

© www.soinside.com 2019 - 2024. All rights reserved.