web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- xml 지시어
web.xml 웹프로젝트의 설정 -->
<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>web03_jsp</display-name>
<servlet>
<servlet-name>while</servlet-name>
<servlet-class>ch03.WhileController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>while</servlet-name>
<url-pattern>/ch03_servlet/while.do</url-pattern>
</servlet-mapping>
<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/404code.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/500code.jsp</location>
</error-page>
</web-app>
404code.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<!-- 404code.jsp -->
<h2>요청하신 주소를 찾을 수 없습니다.</h2>
<p>
잠시 후에 다시 한번 시도해 주시기 바랍니다.
동일한 문제가 지속적으로 발생할 경우 고객센터로
문의하여 주십시오.
</p>
</body>
</html>
=>
요청하신 주소를 찾을 수 없습니다.잠시 후에 다시 한번 시도해 주시기 바랍니다. 동일한 문제가 지속적으로 발생할 경우 고객센터로 문의하여 주십시오.
|
500code.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<!-- 500code.jsp -->
<h2>이용에 불편을 드려 죄송합니다.</h2>
<p>
잠시 후에 다시 한번 시도해 주시기 바랍니다.
동일한 문제가 지속적으로 발생할 경우 고객센터로
문의하여 주십시오.
</p>
</body>
</html>
=>
이용에 불편을 드려 죄송합니다.잠시 후에 다시 한번 시도해 주시기 바랍니다. 동일한 문제가 지속적으로 발생할 경우 고객센터로 문의하여 주십시오.
|
댓글 ( 4)
댓글 남기기