본문 바로가기

웹개발 셋팅

에러페이지 처리하기

web.xml 에서 다음과 같이 셋팅해준다.


<error-page>

  <error-code>500</error-code>

  <location>/myerr.jsp</location>

  </error-page>

  <error-page>

  <error-code>404</error-code>

  <location>/myerr2.jsp</location>

  </error-page>

  <error-page>

  <exception-type>java.lang.ArithmaticException</exception-type>

  <location>/myerr3.jsp</location>

  </error-page>