이지우 - web.xml 에러페이지 리다이렉트 설정에 400, 401, 403 유형 추가

This commit is contained in:
jiwoo 2023-07-18 18:01:48 +09:00
parent c598a181cb
commit fab5bf3482

View File

@ -142,6 +142,18 @@
<exception-type>java.lang.Throwable</exception-type>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>400</error-code>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>401</error-code>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/common/error.jsp</location>