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

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

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

<%@ page trimDirectiveWhitespaces="true" %>

 

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

<jsp-config>
<jsp-property-group>
<url-pattern>*.jspurl-pattern>
<trim-directive-whitespaces>truetrim-directive-whitespaces>
jsp-property-group>
jsp-config>

 

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

<init-param>
<param-name>trimSpacesparam-name>
<param-value>trueparam-value>
init-param>

 

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

你可能感兴趣的:(java,web.xml,java)