欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

去除jsp中的空白行

程序员文章站 2022-06-04 19:30:06
...

全局配置:

在web.xml中添加如下配置

<jsp-config>
    <!--去除jsp中的空白行-->
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <trim-directive-whitespaces>true </trim-directive-whitespaces>
    </jsp-property-group>
</jsp-config>

单个文件配置:

直接在jsp文件中添加

<%@ page trimDirectiveWhitespaces="true" %>