裏面web.xml
,加入這樣的事情:
<error-page>
<error-code>400</error-code>
<location>/WEB-INF/jsp/errorpages/ErrorPage400.jsp</location>
</error-page>
<error-page>
<error-code>401</error-code>
<location>/WEB-INF/jsp/errorpages/ErrorPage401.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/WEB-INF/jsp/errorpages/ErrorPage403.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/jsp/errorpages/ErrorPage404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/html/error.html</location>
</error-page>
HTML文件的路徑想/WEB-INF/html/error.html
。
添加之後,對於500內部服務器錯誤404 Not Found返回空主體。 –