본문 바로가기
JavaWeb

[JSP] include

by 캡틴노랑이 2015. 9. 7.
반응형

전용뷰어 보기

정적: 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>

반응형

댓글