jsp中如何去除JSTL標籤庫“include, taglib”等留下的空白行

來源:互聯網
上載者:User

在做項目的時候,經常會使用到JSTL和EL運算式,有時我們需要看下頁面產生的原始碼,但是當jsp中充滿了jstl的各種標籤,頁面就會存在很多的空白部分,有時太多了會讓瀏覽器假死掉,這是我們就想要去掉這些空白的部分了。去掉的方法很多,下面一一列舉出來。

我的開發及伺服器環境:Windows7 + Eclipse2014 + Tomcat7.0 + JDK 1.7.0

經過多番測試,可用的方法有:

1、在每個JSP的頭上加上一段代碼   <%@ page trimDirectiveWhitespaces="true" %>

2、在頁面上加上一個jsp指令碼代碼<%out.clear();%>

3、在工程的web.xml上加上如下配置

<jsp-config>  <jsp-property-group>  <url-pattern>*.jsp</url-pattern>  <trim-directive-whitespaces>true</trim-directive-whitespaces>  </jsp-property-group>  </jsp-config>

4、使用tomcat的配置web.xml

<span style="color:#333333;">     <servlet>             <servlet-name>jsp</servlet-name>             <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>             <init-param>                 <param-name>fork</param-name>                 <param-value>false</param-value>             </init-param>             <init-param>                 <param-name>xpoweredBy</param-name>                 <param-value>false</param-value>             </init-param>            </span><span style="color:#ff0000;"><strong><init-param>                <param-name>trimSpaces</param-name>                <param-value>true</param-value>             </init-param></strong></span><span style="color:#333333;"><strong>  </strong>           <load-on-startup>3</load-on-startup>         </servlet></span>

注意:需要清除重新發布才能啟作用!

步驟:Stop,Clean...,Publish,Start

我剛開始就試過了所有方法結果都不起作用,才想到重新發布。

本欄目更多精彩內容:http://www.bianceng.cn/webkf/JSP/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.