文件名引用“pizza.html”,该内容在Web内容中不存在

时间:2014-10-10 20:59:11

标签: html servlets web.xml welcome-file

我在Eclipse Indigo的web.xml中收到以下警告,导致项目无法运行。我认为我的web.xml看起来正确,所以我不明白为什么我收到警告。警告发生在web.xml中欢迎文件列表中的欢迎文件中。

这是警告 - >文件名引用“web.html”中不存在的“pizza.html”

但HTML文件确实存在于WebContent文件夹中,如此......

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" 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>BreakNeckPizza</display-name>
  <servlet>
      <servlet-name>PizzaControl</servlet-name>
      <servlet-class>com.gmail.gmjord.PizzaController</servlet-class>
  </servlet>
  <servlet-mapping>
      <servlet-name>PizzaControl</servlet-name>
      <url-pattern>/pizza.do</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>pizza.html</welcome-file>
  </welcome-file-list>
</web-app>

任何人都可以解决这个问题吗?谢谢。

0 个答案:

没有答案