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 | 31 |
Tags
- 제너릭
- 벌크연산
- jscalendar
- JPQL
- values()
- namedQuery
- JPA
- 자바서블릿
- springflow
- jQuery값전송
- Hibernate
- jQuery값전달
- Generic
- calendar
- 스프링데이터흐름
- JQuery
- 대량쿼리
- javaservlet
- 페치조인
- joinfetch
- LIST
- 엔티티직접사용
- fetchjoin
- 프로젝트생성
- javascriptcalendar
- paging
- jQueryUI
- 페이징
- 제네릭
- fullcalendar
Archives
- Today
- Total
가자공부하러!
JSP 커스텀 에러페이지 설정(이클립스) 본문
1. web xml에 추가
<error-page>
<error-code>404</error-code>
<location>/error/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/error.jsp</location>
</error-page>
2. 에러페이지 작성(경로 : WEB-INF/error)
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page isErrorPage="true" %>
<%
response.setStatus(HttpServletResponse.SC_OK);
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
404!!!
<script type="text/javascript">
location.href="/main";
</script>
</body>
</html>
'공부 > 웹' 카테고리의 다른 글
CSS - Grid Layout 속성 정리, 활용 방법 (0) | 2019.10.03 |
---|---|
페이징 + 검색 정리(JSP) (0) | 2019.09.03 |
로그아웃 후 최근 방문 페이지로 돌아가기(JSP) (0) | 2019.09.02 |
JSP/js 경로(contextPath) 가져오기, UNI code EN/DECODING (0) | 2019.08.21 |
WEB-INF가 뭐죠? (0) | 2019.07.13 |
Comments