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"%>.
本文介绍了解决JSP页面中因使用标签导致大量空行而引起的性能问题的方法。一种是在web.xml中配置全局设置,另一种是在单个JSP文件内进行局部调整。
445

被折叠的 条评论
为什么被折叠?



