我创建了一个 Web 动态项目Struts2Starter
,对于 Target 运行时,Web 容器是 Apache Tomcat 7。
当我运行这个项目时,它给出了一个错误:
The requested resource(/Struts2Starter/) is not available
这是路径:
Webb 文件夹元素/文件/内容已部署并在 Deployed Resources 文件夹中:
代码片段:
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>
<package name="default" extends="default">
<action name="getTutorial" class="TutorialAction">
<result name="success">/success.jsp</result>
<result name="failure">/error.jsp</result>
</action>
</package>
</struts>
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" 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" id="WebApp_ID" version="3.0">
<display-name>Struts2Starter</display-name>
<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>
error.jsp
:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Error Page!
</body>
</html>
success.jsp
:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Success Page!
</body>
</html>
但是,当我运行其他 Web 项目时,它们运行良好。我已经在web.xml
. 我后来删除了它,因为我不需要它。
我尝试运行:
http://localhost:8083/Struts2Starter/
http://localhost:8083/Struts2Starter/TutorialAction
http://localhost:8083/Struts2Starter/TutorialAction.action
由于编译器找不到可用的项目,因此所有错误都相同。
项目建成。端口是 8083 而不是 8080,因为 8080 已经用于某些服务。但是,正如我之前提到的,其他 Web 项目在 Apache 7 上运行良好,使用 8083。在项目的部署程序集中,我已将我的用户库“Struts2”(如上面的项目资源管理器图像所示)映射到部署路径“WEB-INF /lib”。
我无法弄清楚为什么项目没有运行,有什么建议吗?我已经提到了其他有类似问题的线程,但其中大多数是针对 servlet 的,我没有做任何 servlet 映射,而是使用过滤器。
错误快照: