How can I strip out extra whitespace from jsp pages' output? Is there a switch I can flip on my web.xml? Is there a Tomcat specific setting?

link|improve this question

67% accept rate
feedback

5 Answers

up vote 34 down vote accepted

There is a trimWhiteSpaces directive that should accomplish this,

In your JSP:

<%@ page trimDirectiveWhitespaces="true" %>

Or in the jsp-config section your web.xml

<jsp-config>
  <jsp-property-group>
    <url-pattern>*.jsp</url-pattern>
    <trim-directive-whitespaces>true</trim-directive-whitespaces>
  </jsp-property-group>
</jsp-config>

Unfortunately if you have a required space it might also need strip that, so you may need a non-breaking space in some locations.

link|improve this answer
That is interesting, thanks for the answer. – James McMahon Oct 16 '08 at 15:01
1  
Unfortunately this does not work in Tomcat 6.0.24 – Kdeveloper May 7 '10 at 19:05
Is there a difference in terms of performance between these two options? – jlb Apr 10 at 10:25
But seems to work on Tomcat 6.0.35. – adarshr 2 days ago
feedback

If your servletcontainer doesn't support the JSP 2.1 trimDirectiveWhitespaces property, then you need to consult its JspServlet documentation for any initialization parameters. In for example Tomcat, you can configure it as well by setting trimSpaces init-param to true in for JspServlet in Tomcat's /conf/web.xml:

<init-param>
    <param-name>trimSpaces</param-name>
    <param-value>true</param-value>
</init-param>

A completely different alternative is the JTidyFilter. It not only trims whitespace, but it also formats HTML in a correct indentation.

link|improve this answer
I have configured by setting trimSpaces init-param to true in /conf/web.xml but the spaces in the generated html are not trimmed. I am using Tomcat 6.0. Any ideas? – ria Apr 19 '10 at 13:10
1  
@ria: Note that you need to understand that this only trims whitespace left by taglibs like JSTL and scriptlets. If you want to trim ALL whitespace from HTML, then head for a different solution. You can find a filter example here: balusc.blogspot.com/2007/12/whitespacefilter.html – BalusC Apr 19 '10 at 13:27
Thank you BalusC.. – ria Apr 20 '10 at 5:25
feedback

Any performance implications of using this directive? Does it slow down the generating output?

link|improve this answer
2  
That depends on servlet container you use. Most of them use it as a compiler hint, and it only affects the compile time. – Rontologist Feb 2 '09 at 17:50
feedback

This should really be a comment to the first answer, I don't think I have sufficient points to make a comment. So if someone can copy this an put it in as a comment for that answer it would be great.

The trimDirectiveWhitespaces is only supported by servlet containers that support JSP 2.1 and after, or in the case or Tomcat, Tomcat 6 (and some versions e.g. Tomcat 6.0.10 don't implement it properly - don't know about the others), there's more information about trimDirectiveWhitespaces here:

http://java.sun.com/developer/technicalArticles/J2EE/jsp_21/

and here

http://raibledesigns.com/rd/entry/trim_spaces_in_your_jsp1

link|improve this answer
feedback

Not directly what you're asking for, but what helps me is putting HTML comment tags in a clever way around my jsp tags, and also putting whitespace inside a servlet tag (<% %>):

${"<!--"}
<c:if test="${first}">
    <c:set var="extraClass" value="${extraClass} firstRadio"/>
</c:if>
<c:set var="first" value="${false}"/>
${"-->"}<%

%><input type="radio" id="input1" name="dayChooser" value="Tuesday"/><%
%><label for="input1" class="${extraClass}">Tuesday</label>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.