Dentro del web.xml
<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <trim-directive-whitespaces>true</trim-directive-whitespaces> </jsp-property-group> </jsp-config>
O, dentro de cada JSP:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" trimDirectiveWhitespaces="true"%>
Para eliminar los espacios en blanco generados dentro de un TAG:
<%@ tag pageEncoding="UTF-8" trimDirectiveWhitespaces="true"%>
No hay comentarios:
Publicar un comentario