본문 바로가기

Programming/HTML&JAVASCRIPT&JQuery

<JSP>기존 에러페이지가 보기 싫어? 나만의 에러 페이지를 새로 만들어보자!

728x90
반응형

기존에 영어가 보이고 복잡한에러페이지....

나만의 에러페이지를 만들어 보았습니다!



(XML)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
 xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
 id="WebApp_ID" version="3.1">
  <display-name>Error</display-name>
  <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>404</error-code>
  <location>/Error/error404.jsp</location>
  </error-page>
  
   <error-page>
  <error-code>400</error-code>
  <location>/Error/error400.jsp</location>
  </error-page>
  
   <error-page>
  <error-code>401</error-code>
  <location>/Error/error401.jsp</location>
  </error-page>
  
   <error-page>
  <error-code>500</error-code>
  <location>/Error/error500.jsp</location>
  </error-page>
  
   <error-page>
  <error-code>503</error-code>
  <location>/Error/error503.jsp</location>
  </error-page>
</web-app>
cs

*web-app 사이에 <error-page> 부분을 추가해 줍니다.

<error-code>에는 바꾸길 원하는 페이지의 에러 코드를 넣어줍니다.

<location>에는 자신만의 에러페이지를 만들어 둔 jsp파일경로를 넣습니다.


(실행 결과)

나만의 에러페이지가 잘 출력되고 있습니다!

자신만의 예쁜 페이지를 만들어 보세요!~

반응형