网页顶部空几行 jsp(转)
程序员文章站
2022-07-09 20:00:14
...
jsp中会经常使用到使用jsp标签和jstl的标签,比如<%@ page ..%>, <%@ taglib ...%>, <c:forEach....%>, 尤其是循环标签,在jsp最终输出的html中会产生大量的空行,使得性能降低。最方便的解决方法是在web.xml 中添加以下设置。
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true </trim-directive-whitespaces>
</jsp-property-group>
这个是针对所有jsp页面,还有一种就是在单个的jsp中添加<%@ page trimDirectiveWhitespaces="true"%>.
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true </trim-directive-whitespaces>
</jsp-property-group>
这个是针对所有jsp页面,还有一种就是在单个的jsp中添加<%@ page trimDirectiveWhitespaces="true"%>.
下一篇: Java的图片处理工具类(转)