반응형
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
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
more
Archives
Today
Total
관리 메뉴

비전공개미 개발노트

[JSP] include로 header / footer 붙이기 본문

프로그래밍/JSP

[JSP] include로 header / footer 붙이기

비전공개미 2022. 10. 11. 18:05
반응형
SMALL

header.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>
Footer내용
</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>Insert title here</title>
</head>
<body>
Footer내용
</body>
</html>

 

 

 

ex10.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="header.jsp" %>
<hr>
본문내용
<hr>
<%@ include file="footer.jsp" %>
</body>
</html>

 

[출력]
1번째 방문입니다
--------------------------------------------------------------------
본문내용
--------------------------------------------------------------------
Footer내용
반응형
LIST
Comments