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>