(주)누리웨어

화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/

Tag Library사용시 Html소스에서 공백 없애기 _ 지인으로부터 받음

방법 1.

web.xml

<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<page-encoding>UTF-8</page-encoding>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>
방법 2.

JSP 상단의 page directive 에 “trimDirectiveWhitespaces” 속성을 “true” 로 설정

<%@ page language=”java” contentType=”text/html; charset=UTF-8″ pageEncoding=”UTF-8″ trimDirectiveWhitespaces=”true”%>

기타.

*.tag 로 태그라이브러리 생성시에서는 web.xml 의 설정이 적용되지 않습니다. tag directive 에 “trimDirectiveWhitespaces” 속성을 “true” 로 설정

<%@ tag language=”java” pageEncoding=”UTF-8″ body-content=”empty” trimDirectiveWhitespaces=”true” %>
기타 1.

EL 및 스크립팅 제한 속성 (web.xml & page directive)

http://madev.tistory.com/46

댓글 남기기