2014-03-01 53 views

回答

0

你利用它存儲在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文件中的歡迎文件是要在服務器啓動時加載文件..

希望這幫助