在apache tomcat 7上运行Servlet应用程序时遇到错误

时间:2019-04-01 11:31:30

标签: java java-ee

“我已经在servlet程序中定义了欢迎文件列表。仍然我的应用程序在启动时没有加载相同的东西。这可能是什么原因?请注意,我已将该html文件放在web inf文件夹中。”

我已经重建并重新部署了我的应用程序。仍然不起作用。

<?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/j2ee" 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">
  <welcome-file-list>
  <welcome-file>index.html</welcome-file>
  </welcome-file-list>
  <display-name>VoterApp</display-name>
  <servlet>
      <servlet-name>wert</servlet-name>
      <servlet-class>VoterServ</servlet-class>
  </servlet>
  <servlet-mapping>
      <servlet-name>wert</servlet-name>
      <url-pattern>/voterSite</url-pattern>
  </servlet-mapping>
</web-app>

当我运行Web应用程序VoterApp时,它应该在启动时加载index.html,但出现资源不可用错误。

1 个答案:

答案 0 :(得分:1)

只需尝试将index.html文件移动到根目录中的WEB-INF文件夹之外。

rootFolder
 |-- WEB-INF
 |    `-- web.xml
 `-- index.html

应该可以。