idea執行時預設顯示自己建立的jsp方法

好的!文西發表於2020-12-12

在web.xml中加入以下程式碼,然後重啟伺服器就可以了.

<welcome-file-list>
    <welcome-file>這兒寫你要顯示的頁面名稱</welcome-file>
</welcome-file-list>

新增位置如下:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
    <welcome-file-list>
        <welcome-file>welcome.jsp</welcome-file>
    </welcome-file-list>
</web-app>

這樣執行專案時就預設顯示welcome.jsp頁面了

相關文章