如何从 jsp 页面的输出中去除多余的空格?有没有可以在我的 web.xml 上翻转的开关?是否有特定于 Tomcat 的设置?
9 回答
有一个 trimWhiteSpaces 指令可以完成这个,
在您的 JSP 中:
<%@ page trimDirectiveWhitespaces="true" %>
或者在 jsp-config 部分中您的 web.xml (请注意,这从 servlet 规范 2.5 开始。):
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>
不幸的是,如果您有所需的空间,它可能还需要剥离它,因此您可能在某些位置需要一个不间断的空间。
如果您的 servletcontainer 不支持 JSP 2.1trimDirectiveWhitespaces
属性,那么您需要查阅其JspServlet
文档以了解任何初始化参数。例如在Tomcat中,您也可以通过在 Tomcat中将trimSpaces
init-param 设置为true
in for来配置它:JspServlet
/conf/web.xml
<init-param>
<param-name>trimSpaces</param-name>
<param-value>true</param-value>
</init-param>
一个完全不同的选择是JTidyFilter。它不仅修剪空白,而且还以正确的缩进格式化HTML。
trimDirectiveWhitespaces 仅由支持 JSP 2.1 及更高版本的 servlet 容器支持,或者在 Tomcat、Tomcat 6 的情况下(以及某些版本,例如 Tomcat 6.0.10 没有正确实现它 - 不知道其他版本)。这里有关于 trimDirectiveWhitespaces 的更多信息:
http://www.oracle.com/technetwork/articles/javaee/jsp-21-136414.html
和这里
不是您直接要求的,而是帮助我以巧妙的方式在我的 jsp 标记周围放置 HTML 注释标记,并将空格放在 servlet 标记 (<% %>) 中:
${"<!--"}
<c:if test="${first}">
<c:set var="extraClass" value="${extraClass} firstRadio"/>
</c:if>
<c:set var="first" value="${false}"/>
${"-->"}<%
%><input type="radio" id="input1" name="dayChooser" value="Tuesday"/><%
%><label for="input1" class="${extraClass}">Tuesday</label>
如果您使用标签,您也可以在那里应用:
<%@ tag description="My Tag" trimDirectiveWhitespaces="true" %>
在你的jsp上:
<%@ page trimDirectiveWhitespaces="true" %>
您可以更进一步,还可以在构建时删除 html 标记之间的换行符(回车)。
例如改变:
<p>Hello</p>
<p>How are you?</p>
进入:
<p>Hello</p><p>How are you?</p>
这样做,使用maven-replacer-plugin
并设置它pom.xml
:
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<id>stripNewlines</id>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<basedir>${project.build.directory}</basedir>
<filesToInclude>projectname/WEB-INF/jsp/**/*.jsp</filesToInclude>
<token>>\s*<</token>
<value>><</value>
<regexFlags>
<regexFlag>MULTILINE</regexFlag>
</regexFlags>
</configuration>
</execution>
</executions>
</plugin>
这只会修改 build-directory 中的 JSP,而不会触及源代码中的 JSP。
您可能需要调整<filesToInclude>
JSP 所在的路径 ( )。
请使用修剪功能,例如
fn:trim(string1)
添加/编辑您的tomcatcatalina.properties
文件
org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
另见:https ://confluence.sakaiproject.org/display/BOOT/Install+Tomcat+7
离实际问题有点远,如果你想摆脱你在输出之前所做的任何事情导致的空行,你可以使用
out.clearBuffer();