springMVC使用jsp:include嵌入頁面的兩種方式

來源:互聯網
上載者:User

標籤:path   否則   bsp   jpg   context   font   type   main   管理系統   

1、靜態嵌入子頁面

  <% @include file="header.jsp" %>

    靜態嵌入支援 jsphtmlxml 以及純文字。

 

  靜態嵌入在編譯時間完成,相當於直接將子頁面的文本插入到 include 標籤所在的位置。子頁面可直接使用父頁面中的變數。  

 

2、動態嵌入子頁面

  使用 jsp:include 時必須設定 flush 屬性為 true

  <jsp:include page="/main/header.jsp" flush="true"/>

       否則子頁面在嵌套的時候會報500錯誤

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<jsp:include page="/main/header.jsp" flush="true"/>


<div class="right">
<img class="wColck" src="${pageContext.request.contextPath }/statics/img/clock.jpg" />
<div class="wFont">
<h2> ${userSession.userName }</h2>
<p>歡迎來到超市賬單管理系統!</p>
</div>
</div>


<jsp:include page="/main/footer.jsp" flush="true"/>

 

springMVC使用jsp:include嵌入頁面的兩種方式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.