在Tomcat上运行Index页面没有反映出来

时间:2014-03-01 06:06:12

标签: java jsp tomcat

有没有人告诉我, 当eclipse运行时如何在服务器上加载index.jsp, 当我运行服务器时,index.jsp应该反映但不反映

1 个答案:

答案 0 :(得分:0)

使用存储在WEB-INF文件夹

中的web.xml文件执行此操作
<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_2_5.xsd" version="2.5">
  <display-name>Welcome to Tomcat</display-name>
  <description>
hello
  </description>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
 </web-app>

欢迎文件是您要在服务器启动时加载的文件..

希望这有帮助