eclipse webapp欢迎文件显示错误

时间:2015-09-15 10:12:15

标签: eclipse tomcat web-applications welcome-file

我刚接触eclipse并在新的webapp开始时面临困难。 index.jsp没有显示。

enter image description here

的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" 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>PizzaOrderApp</display-name>

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>

我已尝试使用http://localhost:8080/PizzaOrderApp/index.jsphttp://localhost:8080/PizzaOrderApp/jsp/index.jsp

删除读取后的tomcat服务器:

enter image description here

3 个答案:

答案 0 :(得分:0)

您是否尝试将.jsp文件直接放在WebContent文件夹中,而不是为JSP页面创建文件夹?

答案 1 :(得分:0)

您没有在web.xml中定义Spring dispatcher servlet。您可以将index.jsp复制到WEB-INF目录之外(进入webcontent),或者您应该深入了解Spring MVC documentation

答案 2 :(得分:0)

  

我也遇到了这个问题,但我做错了是,我创造了   使用Dynamic Web Module 3.0版在eclipse中动态项目。它   不会给你Web.xml文件。我从其他项目中添加了Web.xml文件   但仍然没有欢迎文件。

     

然后我删除了项目,并使用Dynamic Web创建了项目   模块版本2.4,它给了我Web.xml文件。我再次配置   欢迎文件在Web.xml文件中,之后它的工作正常。服务器   我使用的是Tomcat 7和java 1.7,Eclipse Luna。   enter image description here