I use trim-directive-whitespaces option in web.xml
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>
So I think that jsp result is nice.
But I found seeing bug that jsp result rendering.
for example.
here is part of sample jsp code.
(value1 : abcd, value2: efgh)
<div class="${value1} ${value2}"></div>
result I think: <div class="abcd efgh"></div>
actual result: <div class="abcdefgh"></div>
middle spaces are removed!!
I can understand.
How can I fix it as I thought?
Did I misunderstood?
please help me.