JSP文法簡單教程

來源:互聯網
上載者:User

JSP的有它自己的節中的樹脂的檔案,下面是一個介紹性指南。

模板資料-的文本輸出
除非特別標明,文中的JSP的檔案將送交正是因為它是在文字檔中的一部分的反應。這就是所謂的模板資料的JSP技術規範。

JSP的埃爾和JSTL
JSP的電致發光是JSP的表達語言。它是用來評估表現,沒有副作用(副作用是改變物體) 。利用電致發光是辨認它的文法: $ (運算式) 。

JSTL是JavaServer頁面標準標籤庫,這是一套標籤,用於建立動態輸出從JSP的。這些標記看起來像普通的XML標記,並解釋了樹脂在翻譯的時間來產生Java代碼執行所期望的行動。

電致發光和JSTL用於整個討論,樹脂JSP的檔案, JSP技術規範,以及JSTL規範提供更多的資訊。

<%@page session="false" contentType="text/html" %><%@taglib uri="http://java.sun.com/jstl/core" prefix="c" %><head><title>A simple thing</title></head><body><!-- this comment gets all the way to the browser --><%-- this comment gets discarded when the JSP is translated into a Servlet --%><%// some java code that makes the variable `x' available to ELpageContext.setAttribute("x",new Integer(5));%>The value of x is ${ x }The value of x + 2 is ${ x + 2 }Is xless than 6?<c:if test="${ x < 6 }"><%@include file="y.jsp" %></c:if></body>
inclide 檔案,
Yes, it is true that x is less than 6, with a value of ${ x }
 
輸出.
 
<head><title>A simple thing</title></head><body><!-- this comment gets all the way to the browser -->The value of x is 5.The value of x + 2 is 7.Is xless than 6?Yes, it is true that x is less than 6,with a value of 5.</body>
相關文章

聯繫我們

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