我是J2EE新手我试图在我的tomcat 7.0上运行一个html文件作为试用版 输入网址http://localhost:8081/成功导航我到tomcat主页,但是当我尝试运行我的"动态网络项目"从eclipse中只包含web.xml和index.html文件,我收到此错误
HTTP状态404 - / StudentManagement /
输入状态报告
message / StudentManagement /
说明请求的资源不可用。
web.xml
内容:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="w3.org/2001/XMLSchema-instance"; xmlns="java.sun.com/xml/ns/javaee"; xsi:schemaLocation="java.sun.com/xml/ns/javaee java.sun.com/xml/ns/javaee/web-app_3_0.xsd"; id="WebApp_ID" version="3.0">
<display-name>StudentManagement</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:0)
如果您没有在web.xml文件中设置欢迎文件,那么您必须专门询问所需的资源。在您的情况下,请使用http://localhost:8081/StudentManagement/index.html
答案 1 :(得分:0)
在Tomcat配置上(eclipse中的模块选项卡) 查看与您的webapp关联的路径
没有servlet你必须在web.xml中明确声明一个欢迎文件