Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JSP
- AWS
- tiles.xml
- 배포
- docker
- RDS
- JavaScript
- 알고리즘
- node.js
- PL/SQL
- EC2
- 비트코인
- 웹소켓
- model1
- jQuery
- 도커
- 암호화
- phaser
- CSS
- Spring
- Ajax
- HTML
- SQL
- express
- 웹게임
- Servlet
- 블록체인
- Cookie
- autowired
- websocket
Archives
- Today
- Total
記錄
JSP) 에러페이지 본문
web.xml에서의 에러 처리
<error-page>
<error-code>404</error-code>
<location>/error/error404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/error500.jsp</location>
</error-page>
</web-app>
error-code에 해당하는 에러 발생시 설정한 location 페이지가 클라이언트에게 송출
~.jsp에서의 에러 처리
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page errorPage="/error/commonError.jsp" %> <!--web.xml 설정보다 우선된다 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- 페이지마다 고유한 에러 페이지 설정
web.xml 설정이 있더라도
errorPage="/error/commonError.jsp" 설정이 우선한다
-->
<%
String data = request.getParameter("name").toLowerCase();
%>
전달받은 내용 : <%= data %>
</body>
</html>
에러 발생시 설정한 location 페이지가 클라이언트에게 송출
sample 에러 페이지
'Web > JSP' 카테고리의 다른 글
JSP) JSTL & EL (0) | 2018.03.26 |
---|---|
JSP) 각종 객체의 생성 갯수와 범위 (0) | 2018.03.21 |
JSP) URL, URI, URN (0) | 2018.03.20 |
JSP) include, forward, request객체 유효범위 (0) | 2018.03.20 |
JSP) xml, application 객체 (0) | 2018.03.20 |
Comments