1. 程式人生 > >springmvc報404Not Found /WEB-INF/jsp/success.jsp was not found on this server.

springmvc報404Not Found /WEB-INF/jsp/success.jsp was not found on this server.

搭載一個springmvc4.1.5.RELEASE專案,搭載好,訪問時,斷點可以進入controller層,但是跳轉時一直報404Not Found ;

檢查專案,明明是有這個jsp,但是一直報錯;


本來以為spring版本4比較高,但是改為3.2後,問題依舊存在,所以排除版本問題;

經過不斷改配置檔案嘗試,發現url-pattern配置從 /* 改為*.do就好了,原因不知,好奇怪。。。


在web.xml中加入<welcome-file-list>index.do</welcome-file-list>解決訪問home時後綴要加index.do。