有些時候刪除了系統自帶的index.jsp刪除後會出現如下圖錯誤
解決辦法,新建立一個以你自己命名的jsp檔案,然後在對該web工程的WEB-INF 目錄下的web.xml進行新增加上下面的註釋所帶的程式碼。
<welcome-file-list>
<welcome-file>test.jsp</welcome-file><!---這裡填寫你需要設定的jsp檔案--->
</welcome-file-list>
如果沒有web.xml 則自己建立一個。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0" metadata-complete="true">
<welcome-file-list>
<welcome-file>test.jsp</welcome-file>
</welcome-file-list>
</web-app>