본문으로 바로가기

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>

실행화면

타이틀과 URL은 include_action.jsp / 출력화면은 include_action.jsp와 footer.jsp를 동시에 보여줌

페이지 소스

페이지 소스에서는 include_action.jsp와 footer.jsp를 동시에 보여줌

 

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>

실행화면

URL은 forward_action.jsp 이지만, 출력화면과 타이틀명은 footer.jsp로 출력됨

페이지 소스

페이지 소스에서는 footer.jsp 소스만 보여줌

 

반응형

'잡학' 카테고리의 다른 글

아나콘다(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