728x90
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h4>------- 현재 페이지 영역 -------</h4>
	<%@ include file="06_07_include01_header.jsp" %>
	<!-- include 소스코드를 복사해서 그대로 가져온다 -->
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<h4>헤더 페이지 영역입니다</h4>

 

06_08_include02.jsp
06_08_include02_header.jsp
06_08_include02_footer.jsp
06_08_include.jsp - include를 이용한 header, footer

06_08_include02_header.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%!
	int pageCount = 0;
	void addCount(){
		pageCount++;
	}
	
	void resetCount(){
		pageCount = 0;
		System.out.println("출력");
	}
%>
<%
	addCount();
%>
<p>이 사이트 방문은 <%=pageCount %>번째 입니다.</p>
06_08_include02.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<%@ include file="06_08_include02_header.jsp" %>
	<p>방문해 주셔서 감사합니다.</p>
	<%@ include file="06_08_include02_footer.jsp" %>
</body>
</html>
06_08_include02_footer.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
Copyright &copy JSPBook
728x90
반응형

+ Recent posts