jsp中的@include與jsp:include有什麼區別

來源:互聯網
上載者:User

1 前言

搞java開發的人也許都知道在jsp中引入項目中其他檔案有如下兩種方式

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

<jsp:include page="xxx.jsp"></jsp:include>

我們也許會使用這兩種方式,但是也許很多人不名稱這兩種方式的區別。下面我們來看看下面的兩個例子
2 開門見山引出問題

(1) /include/include.jsp

<%@ page language="java"  pageEncoding="UTF-8"%><%String path = request.getContextPath();%><p>include頁面</p>

(2)/ index1.jsp頁面

<%@ page language="java" pageEncoding="UTF-8"%><%String path = request.getContextPath();%><!DOCTYPE HTML><html>  <head>  </head>  <body>      <p>index頁面</p>       <%@include file="/include/include.jsp"%>  </body></html>

(3) /index2.jsp

<%@ page language="java" pageEncoding="UTF-8"%><%String path = request.getContextPath();%><!DOCTYPE HTML><html>  <head>  </head>  <body>      <p>index頁面</p>      <jsp:include page="/include/include.jsp"></jsp:include>  </body></html>

現在我們訪問index1.jsp,訪問結果如下

那我們繼續訪問index2.jsp,結果如下

為什麼呢,怎麼index1.jsp為什麼訪問報錯了啊,看來@include與jsp:include是有區別的吧。只有搞懂@include與jsp:include這兩種方式的底層區別,我們就知道為什麼index1.jsp頁面會發生錯誤了。請繼續看下去你就會明白了。

本欄目更多精彩內容: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.