我已經在Eclipse Luna中編寫了一個簡單的動態Web項目。在web.xml頁面中,我刪除了默認的welcome-file-list
標記。即使未定義<welcome-file-list>,index.jsp文件也會打開
<?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" 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>indextest</display-name>
</web-app>
但是URL http://localhost:8080/indextest/仍然引導到index.jsp
下的 'WEB-INF' 我從web.xml
移除標籤welcome-file-list
即使經過。它如何指向index.jsp
頁雖然welcome-file-list
不在web.xml
?
你在使用什麼服務器? – Paolof76
可能它存儲在你瀏覽器的cookies中,只是刪除它重試它。或者只是清理你的tomcat工作目錄,這也會造成問題。 – SaviNuclear
我正在使用Tomcat v7.0 >>> @ Paolof76 –