본문 바로가기

JSP, Servlet/JSP, Servlet 기초

[JSP] c태그 사용하기(<c:import>)

<c:import>
 다른 페이지의 내용을 포함시키기 위해 사용함.
 <jsp:include>와 기능이 유사하지만, 차이점은 <c:import> 태그는 다른 페이지의 내용을 변수에 저장할 수 있음

 

<c:import url=“URL” [var=“변수 이름”] [scope=“영역”] [charEncoding=“인코딩”]>
</c:import>

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>JSTL 연산자</h3>
<c:import url="http://localhost:8181/web-project-07_2/09_forEachEx2.jsp" var="content"></c:import>
${content }
</body>
</html>

 

 

import는 해당 페이지를 불러와서 현재페이지에 로드할 수 있다.

 

 

https://jamesyleather.tistory.com/348

 

[JSP/Servlet] c태그 사용하기 ()

 begin, end, step 속성  begin, end 속성에 시작 번호와 끝 번호를 지정하고 step 속성을 이용해서 증가 값을 정할 수 있다. 속성 설명 begin 반복에 사용될 첫 번째 항목의 index end 반복에 사용될 마

jamesyleather.tistory.com

 

728x90
반응형