-1
是否有任何人告訴我說, 當Eclipse運行如何在服務器加載的index.jsp, 當我運行的服務器中的index.jsp應反映,但它不是反映在Tomcat運行索引頁沒有反映
是否有任何人告訴我說, 當Eclipse運行如何在服務器加載的index.jsp, 當我運行的服務器中的index.jsp應反映,但它不是反映在Tomcat運行索引頁沒有反映
你利用它存儲在WEB-INF文件夾
<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>
這裏web.xml文件中的歡迎文件是要在服務器啓動時加載文件..
希望這幫助