去除JSP中生成html多余空行的方法

去除JSP中多余空行的最简方法

1. 支持JSP 2.1+ ,在每个要去空行的页面里包含下面代码:

<%@ page trimDirectiveWhitespaces="true" %>

2. 支持servlet 2.5+, 即 web.xml的 XSD版本为2.5,在web.xml中加入如下代码

<jsp-config>
去除JSP中生成html多余空行的方法<jsp-property-group>
去除JSP中生成html多余空行的方法<url-pattern>*.jsp</url-pattern>
去除JSP中生成html多余空行的方法<trim-directive-whitespaces>true</trim-directive-whitespaces>
去除JSP中生成html多余空行的方法</jsp-property-group>
</jsp-config>

3. Tomcat 5.5.x+,在Tomcat安装目录/conf/web.xml中找到名叫"jsp"的servlet,添加下面一段代码:

<init-param>
去除JSP中生成html多余空行的方法<param-name>trimSpaces</param-name>
去除JSP中生成html多余空行的方法<param-value>true</param-value>
</init-param>

其中1,2中方法需要Tomcat6++版本

相关推荐