理解JSP中的include(二):jsp-include測試

來源:互聯網
上載者:User
include|js 第一個例子:

file1:

<%
String str = "aaaaa";
%>
<jsp:include page="jsp-include-slave.jsp" />

<%=str%>

file2:

<%
str = str + "bbbbb";
%>

結果:

訪問file1時出錯,提示file2中無法解析變數str。

分析:

在請求file1時,tomcat首先將兩個jsp檔案都轉換為servlet(.java)檔案。然後試圖將兩者編譯為.class檔案,這時,file1正常通過編譯;file2卻無法通過編譯。

結論:

與include-file指令將兩個檔案合并為一個servlet檔案進行編譯執行的方式不同,jsp-include要求兩個檔案相對獨立、完整。





第二個例子:

file1:

<%@ page contentType="text/html;charset=GBK" %>
<%
request.setAttribute("str","aaaaaaaaaaaaaaaa");
%>
<jsp:include page="jsp-include-slave.jsp" />


file2:

<%@ page contentType="text/html;charset=GBK" %>
<%
String str = (String) request.getAttribute("str");
out.println(str);
%>

結果:

aaaaaaaaaaaaaaaa

分析:

由於兩個頁面相對獨立,可以在其間傳遞請求。即:當請求file1時,file1將自動地請求file2。

結論:

使用jsp-include的兩個頁面是一種請求關係,而不是內含項目關聯性。這與include-file不同。





第三個例子:

file1:

<%@ page contentType="text/html;charset=GBK" %>
<%
request.setAttribute("str","aaaaaaaaaaaaaaaa");
%>
<jsp:include page="jsp-include-slave.jsp" />
<br>
<%
String str = (String) request.getAttribute("str");
out.println(str);
%>


file2:

<%@ page contentType="text/html;charset=GBK" %>
<%
String str = (String) request.getAttribute("str");
request.setAttribute("str",str+"bbbbbbbbbbbbbbb");
%>

結果:

aaaaaaaaaaaaaaaabbbbbbbbbbbbbbb

結論:

兩個頁面的請求關係是雙向的。




相關文章

聯繫我們

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