1. 程式人生 > >maven專案中關於war報錯解決辦法

maven專案中關於war報錯解決辦法

今天寫了一個maven專案,到最後<packaging>war</packaging>報錯了,嘗試很多辦法都解決不了,最後得以在一個博主帖子裡的方法完美解決。下面我將該方法分享給大家!

首先看自己的專案中有沒有web.xml這個檔案,src→main→webapp→WEB-INF

如果沒有自己利用工具生成一個或者是去網上找一個,都可以

接下來開啟web.xml,新增如下配置檔案,複製即可

<welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>

最後右鍵專案maven→Update Project  選中 Force Update of Snapshots/Releases

最後點選“OK”,等右下角更新完,問題就解決了!

如果這篇文章能幫你解決問題,請評論一下,謝謝