vote up 5 vote down star
2

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?

flag

80% accept rate

2 Answers

vote up 5 vote down check

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|flag
That is interesting, thanks for the answer. – James McMahon Oct 16 '08 at 15:01
vote up 0 vote down

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

link|flag
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 at 17:50

Your Answer

Get an OpenID
or

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