This is it. it's IT.

jstl로 jsp파일 가져오기. <c:import> 본문

Backend/Spring

jstl로 jsp파일 가져오기. <c:import>

응애개발자 애기 2022. 5. 11. 10:45
728x90
반응형

https://tyrionlife.tistory.com/344

 

[JSTL] c:import VS jsp:include

jsp:include : 내 서버 내의 jsp 파일만 가능 c:import : 외부 jsp 파일 접근 가능 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ include file="common.jsp" %>..

tyrionlife.tistory.com

 

include로 jsp를 포함시키는 방법만 알고 있었는데 jstl로도 가져올 수 있다니...

좋은 발견입니당.

 

<c:import url="파일주소" charEncoding="utf-8"></c:import>
728x90
Comments