프로그래밍/JAVA
JSP 에서 변환되는 HTML 의 공백 제거하기
ismydream
2015. 1. 6. 22:23
JSP 에서 생성되는 HTML에는 불 필요한 공백이 생성된다.
공백을 제거하고 보기 편한 HTML 을 생성하기 위해 JSP 페이지 상단에 trimDirectiveWhitespaces="true" 를 추가해 준다.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" trimDirectiveWhitespaces="true"%>