赞
踩
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>
方案三 在指定的jsp中添加以下代码:(单个的jsp页面)
<%@ page trimDirectiveWhitespaces=“true”%>
方案四 tomcat 目录下 \conf\web.xml文件,在jsp servlet增加参数
<init-param>
<param-name>trimSpaces</param-name>
<param-value>true</param-value>
</init-param>
分享并记录一下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。