我正在尝试创建一个简单的Web应用程序,但我遇到了这个错误:
HTTP状态404 - /LatestFMS/index.html类型状态报告消息 /LatestFMS/index.html description请求的资源不是 可用。 Apache Tomcat / 7.0.57
我已经做好了一切,web.xml的内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID"
version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>LatestFMS</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
index.html存在于公共文件夹中。
但是当我使用带有urlMapping“/ *”的过滤器并且我尝试打印任何东西时,它会打印它但显示404错误。控件到达服务器甚至是过滤器,但它不会超出.ie到index.html。我无法理解发生了什么。
当我不使用过滤器并尝试使用链接“http://localhost:8082/LatestFMS/index.html”访问index.html页面时,我再次给出404错误。
请帮我解决这个问题!!
答案 0 :(得分:0)
检查控制台或Tomcat日志文件 - 它们是否包含错误消息的任何详细信息?