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?
|
There is a trimWhiteSpaces directive that should accomplish this, In your JSP:
Or in the jsp-config section your web.xml (Note that this works starting from servlet specification 2.5.):
Unfortunately if you have a required space it might also need strip that, so you may need a non-breaking space in some locations. |
|||||||||||||||||
|
|
If your servletcontainer doesn't support the JSP 2.1
A completely different alternative is the JTidyFilter. It not only trims whitespace, but it also formats HTML in a correct indentation. |
|||||||||||||
|
|
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 |
||||
|
|
|
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 (<% %>):
|
|||
|
|
|
Add/edit your tomcat
See also: https://confluence.sakaiproject.org/display/BOOT/Install+Tomcat+7 |
||||
|
|