본문 바로가기
TOMCAT/톰캣에러페이지적용

톰캣 에러 처리

by 정윤재 2010. 4. 13.


톰캣 설치 디렉토리/conf/web.xml 에서

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="rsms_web" xmlns="
http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="
http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
 version="2.5">

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
   <error-page>
  <error-code>400</error-code>
  <location>/dcd/jsp/inc/400.jsp</location>
 </error-page>
 <error-page>
  <error-code>401</error-code>
  <location>/dcd/jsp/inc/401.jsp</location>
 </error-page>
 <error-page>
  <error-code>403</error-code>
  <location>/dcd/jsp/inc/403.jsp</location>
 </error-page>
 <error-page>
  <error-code>404</error-code>
  <location>/dcd/jsp/inc/404.jsp</location>
 </error-page>
 <error-page>
  <error-code>500</error-code>
  <location>/dcd/jsp/inc/500.jsp</location>
 </error-page>

</web-app>

빨간색처럼 하면 된다.

주의 할 점

1. 에러 페이지 파일이 512 바이트를 넘어야 한다.(익스플로러 에러란다.)

2. 위의 DTD 에서 version 을 2.5 로 맞춰 줘라 (역시 빨간색 표시)

3. 웹어플리케이션의 web.xml 과 tomcat /conf 의 web.xml 의 dtd 버전을

맞춰줘라


댓글