117

如何从 jsp 页面的输出中去除多余的空格?有没有可以在我的 web.xml 上翻转的开关?是否有特定于 Tomcat 的设置?

4

9 回答 9

180

有一个 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>

不幸的是,如果您有所需的空间,它可能还需要剥离它,因此您可能在某些位置需要一个不间断的空间。

于 2008-10-16T14:18:06.500 回答
28

如果您的 servletcontainer 不支持 JSP 2.1trimDirectiveWhitespaces属性,那么您需要查阅其JspServlet文档以了解任何初始化参数。例如在Tomcat中,您也可以通过在 Tomcat中将trimSpacesinit-param 设置为truein for来配置它:JspServlet/conf/web.xml

<init-param>
    <param-name>trimSpaces</param-name>
    <param-value>true</param-value>
</init-param>

一个完全不同的选择是JTidyFilter。它不仅修剪空白,而且还以正确的缩进格式化HTML。

于 2010-04-10T20:16:13.563 回答
4

trimDirectiveWhitespaces 仅由支持 JSP 2.1 及更高版本的 servlet 容器支持,或者在 Tomcat、Tomcat 6 的情况下(以及某些版本,例如 Tomcat 6.0.10 没有正确实现它 - 不知道其他版本)。这里有关于 trimDirectiveWhitespaces 的更多信息:

http://www.oracle.com/technetwork/articles/javaee/jsp-21-136414.html

和这里

http://raibledesigns.com/rd/entry/trim_spaces_in_your_jsp1

于 2010-04-10T10:22:38.003 回答
4

不是您直接要求的,而是帮助我以巧妙的方式在我的 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>
于 2011-10-01T22:52:40.850 回答
4

如果您使用标签,您也可以在那里应用:

<%@ tag description="My Tag" trimDirectiveWhitespaces="true" %>

在你的jsp上:

<%@ page trimDirectiveWhitespaces="true" %>
于 2017-02-22T15:21:50.717 回答
1

您可以更进一步,还可以在构建时删除 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>&gt;\s*&lt;</token>
                <value>&gt;&lt;</value>
                <regexFlags>
                    <regexFlag>MULTILINE</regexFlag>
                </regexFlags>
            </configuration>
        </execution>
    </executions>
</plugin>

这只会修改 build-directory 中的 JSP,而不会触及源代码中的 JSP。

您可能需要调整<filesToInclude>JSP 所在的路径 ( )。

于 2017-01-04T12:19:56.960 回答
1

请使用修剪功能,例如

fn:trim(string1)
于 2019-06-29T02:43:53.987 回答
0

添加/编辑您的tomcatcatalina.properties文件

org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

另见:https ://confluence.sakaiproject.org/display/BOOT/Install+Tomcat+7

于 2012-12-28T19:15:55.383 回答
0

离实际问题有点远,如果你想摆脱你在输出之前所做的任何事情导致的空行,你可以使用

out.clearBuffer();
于 2020-03-05T15:15:35.650 回答