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?
|
2
|
|
|
|
|
|
There is a trimWhiteSpaces directive that should accomplish this, In your JSP:
Or in the jsp-config section your web.xml
Unfortunately if you have a required space it might also need strip that, so you may need a non-breaking space in some locations. |
|||
|
|
|
Any performance implications of using this directive? Does it slow down the generating output? |
||
|
