정적: include될 jsp 파일의 전역변수를 부모에서 사용가능
<%@include file="c.html"%>
동적: include될 jsp파일의 전역변수를 부모에서 사용불가
<jsp:include page="c.html" />
http://devyongsik.tistory.com/92
--includes.jsp---
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<table border="1">
<tr>
<th>incl B</th>
<th>incl C</th><th>C contains</th>
</tr>
<tr>
<td>jsp:include</td>
<td>jsp:include</td>
<td><jsp:include page="b_act.jsp"/></td>
</tr>
<tr>
<td>jsp:include</td>
<td>@include</td>
<td><jsp:include page="b_dir.jsp"/></td>
</tr>
<tr>
<td>@include</td>
<td>jsp:include</td>
<td><%@include file="b_act.jsp"%></td>
</tr>
<tr>
<td>@include</td>
<td>@include</td>
<td><%@include file="b_dir.jsp"%></td>
</tr>
</table>
</body>
</html>
--b_act.jsp---
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<html>
<head>
<title>B action</title>
</head>
<body>
<jsp:include page="c.html" />
</body>
</html>
'JavaWeb' 카테고리의 다른 글
[JSP] 서블릿 클래스의 init, destory 메서드 (0) | 2015.09.07 |
---|---|
[JSP]useBean (0) | 2015.09.07 |
[빌드오류] Access restriction: The type QName is not accessible due to restriction on required library (0) | 2015.09.07 |
문자열 포맷 (0) | 2015.09.07 |
[JSP] 자주 쓸만한 것들. (0) | 2015.09.07 |
댓글