JSP學習筆記(EL篇)

來源:互聯網
上載者:User

1.如何通過EL訪問Implicit Object
EL可以用在兩個位置:
a.template text
b.標準標籤和自訂標籤的屬性設定

Implicit Object
與取值範圍有關的: applicationScope, sessionScope, requestScope, pageScope
與輸入輸出有關的:param, paramValues
與head有關的:header,headerValues
與cookie有關:cookie
與ServletContext的初使化參數有關:initParam
還有一個pageContext

2.EL訪問操作符
property操作符號:.或者 []
集合操作符號:[]
如果要訪問的屬性裡麵包含非字母,必須要用[]

3. EL其他動作符號
a.Arithmetic: +,-(binary),*,/(div),%(mod)
b.logic: &&(and),||(or), !(not)
c.relational:==(eq), !=(ne), <(lt), >(gt),<=(le),>=(ge)
d.empty:用來判斷是否為null或empty
e.conditional: ?

4.EL functions
a.如何使用el functions
${prefix:functionName(args0,...)}
b.如何定義一個function
定義function必須是一個public static方法,且類的存取修飾詞也是public
package willim;
public class MyFunction{
 public static boolean equals(String str1, String str2) {
   return str1.equals(str2);
 }
}
c.配置descriptor
<function>
  <name>equals</name>
  <function-class>willim.MyFunction</function-class>
  <function-signature>boolean equals(java.lang.String, java.lang.String)</function-signature>
</function>

 

相關文章

聯繫我們

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