vote up 1 vote down star

Is anyone familiar with a technique for removal of whitespace that results from the use of tag libraries such as JSTL? I know that you can do this in Tomcat via a trimSpaces initialization parameter, but does anyone have similar experience doing this type of thing within WebSphere App Server?

flag
What are you trying to achieve? Increase html source readability or reduce html page size? – cherouvim Mar 4 at 20:45

2 Answers

vote up 0 vote down

If you're using version 2.1 or later of the JSP spec, you can simply include the following directive in your JSP, which will strip out whitespace before sending the resultant payload over the wire:

<%@ page trimDirectiveWhitespaces="true" %>
link|flag

Your Answer

Get an OpenID
or

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