在jsp中我们引入的标签,例如jstl的标签,循环遍历等等,可能会产生很多空行,其实也没什么,不会影响展示,但是空行多多少少会影响性能,这是我们只需要在web.xml中配置一下我们就可以很简单的去掉,配置如下:
<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <trim-directive-whitespaces>true</trim-directive-whitespaces><!-- 去除空行 --> </jsp-property-group> </jsp-config>
<jsp-config>是用于对jsp的配置,具体大家可以自行度娘,我就不多说了==。
时间: 2024-10-06 23:39:55