17 07 2014
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
SilverStream Mime Type Apache Httpd 2.2.x + JBoss EAP 6.x + mod-jk + node1,node2 clustering, node3,node4 clustering방법