include_action.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>forward_action.jsp</title>
</head>
<body>
<h1>forward_action.jsp 에서 footer.jsp 호출</h1>
<HR>
forward_action.jsp에서 출력한 메시지 입니다. <br><br>
<jsp:forward page="footer.jsp">
<jsp:param value="test@test.net" name="email"/>
<jsp:param value="000-0000-0000" name="tel"/>
</jsp:forward>
</body>
</html>
footer.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>footer.jsp</title>
</head>
<body>
<h2>footer.jsp 에서 출력한 메시지 입니다.</h2>
email : <%= request.getParameter("email") %><br>
tel : <%= request.getParameter("tel") %>
</body>
</html>
실행화면
페이지 소스
forward_action.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>forward_action.jsp</title>
</head>
<body>
<h1>forward_action.jsp 에서 footer.jsp 호출</h1>
<HR>
forward_action.jsp에서 출력한 메시지 입니다. <br><br>
<jsp:forward page="footer.jsp">
<jsp:param value="test@test.net" name="email"/>
<jsp:param value="000-0000-0000" name="tel"/>
</jsp:forward>
</body>
</html>
footer.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>footer.jsp</title>
</head>
<body>
<h2>footer.jsp 에서 출력한 메시지 입니다.</h2>
email : <%= request.getParameter("email") %><br>
tel : <%= request.getParameter("tel") %>
</body>
</html>
실행화면
페이지 소스
반응형
'잡학' 카테고리의 다른 글
아나콘다(Ananconda) 설치 (0) | 2020.10.13 |
---|---|
톰캣(Tomcat)이 읽는 실제 경로 (0) | 2020.08.27 |
Jsp Servlet 설정 (0) | 2020.08.24 |
톰캣(Apache Tomcat) 설치 (0) | 2020.08.24 |
데이터 타입 (0) | 2020.08.04 |