<%@ page contentType="text/html;charset=UTF-8" trimDirectiveWhitespaces="true" %>

trimDirectiveWhitespaces="true"  attribute를 추가해 준다.

 

예를들어

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>

처럼 테그 라이브러리 들을 jsp 템플릿 해더에 추가해주거나 공통 파일을 만들어 놓고 include하게 되는데

 

위 tag library 선언-> 공백들이 생성된다.

 

그래서 trimDirectiveWhitespaces="true" 추가해주면 공백이 자동으로 제거되고 html 이 출력된다.

 

 

반응형
블로그 이미지

visualp

c#, java

,