1
在春天,我有一個代碼重定向到JSP帕傑:如何重定向404錯誤html頁面春季
<error-page>
<error-code>404</error-code>
<location>404.jsp</location>
</error-page>
但是,當我嘗試使用HTML頁面
<location>/WEB-INF/templates/404</location>
或
<location>/WEB-INF/templates/404.html</location>
它顯示我404標準錯誤,不是我的錯誤頁面。
使用異常處理程序。看看下面的文章。 http://stackoverflow.com/questions/21061638/spring-mvc-how-to-return-custom-404-errorpages – Avinash