Jsp學習10-EL表示式詳解
一、什麼是 EL 語言。
EL是 JSP 2.0 引入的一種計算和輸出 Java 物件的簡單語音。
二、EL 語言的作用。
為了使JSP寫起來更加簡單。表示式語言的靈感來自於 ECMAScript 和 XPath 表示式語言,它提供了在 JSP 中簡化表示式的方法。它是一種簡單的語言,基於可用的名稱空間(PageContext 屬性)、巢狀屬性和對集合、操作符(算術型、關係型和邏輯型)的訪問符、對映到 Java 類中靜態方法的可擴充套件函式以及一組隱式物件。
三、使用 EL 語言前的配置。
1、匯入standard.jar。
2、在需要使用 EL 語音的頁面加上<%@ page isELIgnored=”false” %>。
注意 <%@ page isELIgnored=”true” %> 表示是否禁用EL語言,TRUE表示禁止.FALSE表示不禁止.JSP2.0中預設的啟用EL語言。
3、對於整個JSP應用程式,要修改WEB.XML配置(tomcat5.0.16預設是支援EL的)
<jsp-property-group>
<description> For config the ICW sample application </description>
<display-name>JSPConfiguration </display-name>
<url-pattern>/jsp/datareset.jsp </url-pattern>
< el-ignored>true< / el-ignored> < / el-ignored>
<page-encoding>UTF-8</page-encoding>
<scripting-invalid>true</scripting-invalid>
<include-prelude>/jsp/prelude.jspf</include-prelude>
<include-coda>/jsp/coda.jspf</include-coda>
</jsp-property-group>
四、如何使用 EL 表示式。
1、EL 的內建物件。
內建物件:pageScope、requestScope、sessionScope、applicationScope,如果未指定scope,預設從 pageScope 到 applicationScope一次擴大範圍查詢屬性名,也可以使用 xxxScope.屬性名 直接指定在某個 scope 查詢,如:
${ requestScope.tom }
2、語法結構:${expression}
3、[ ]與.運算子。
EL 提供.和[]兩種運算子來存取資料。如:
${student.name}
${studentList[0].name}
當要存取的屬性名稱中包含一些特殊字元,如.或?等並非字母或數字的符號,就一定要使用“[ ]“。如:
${ student.My-Name} <!-- ${ student.My-Name} 寫法不正確,應該改為下面這種 -->
${ student["My-Name"] }
如果要動態取值時,就可以用“[ ]“來做,而“.“無法做到動態取值。如:
${ sessionScope.student[property] } <!-- 其中 property 是一個變數,動態取物件的屬性,如"id", "name"等等 -->
4、使用 EL 取出內建物件的資料。
(1)、普通物件和物件屬性。
伺服器端:
request.setAttribute(“student”, student);
在瀏覽器上打印出伺服器端繫結的資料:
${ student } <!-- 相當於執行了 student.toString(); -->
${ student.name } <!-- 相當於執行了 student.getName(); -->
${ student.teacher.name } <!-- 相當於執行了 student.getTeacher().getName(); -->
(2)、陣列中的資料。
伺服器端:
String[] nameArray = new String[]{"Tom", "Lucy", "Lilei"};
request.setAttribute(“nameArray”,nameArray);
Student[] students = new Student[3];
students[0] = stu1;
students[1] = stu2;
students[2] = stu3;
request.setAttribute(“students”,students);
在瀏覽器上打印出伺服器端繫結的陣列資料:
${ nameArray[0] } <!-- Tom -->
${ nameArray[1] } <!-- Lucy -->
${ nameArray[2] } <!-- Lilei -->
${ students[0].id } <!-- 輸出第一個學生的ID -->
${ students[1].name } <!-- 輸出第二個學生的name -->
${ students[2].teacher.name } <!-- 輸出第三個學生的老師的name -->
(3)、List中的資料。
伺服器端:
List<Student> studentList=new ArrayList<Student>();
studentList.add(stu1);
studentList.add(stu2);
studentList.add(stu3);
request.setAttribute(“studentList”,studentList);
在瀏覽器上打印出伺服器端繫結的List資料:
${ studentList[0].id } <!-- 輸出第一個學生的ID -->
${ studentList[1].name } <!-- 輸出第二個學生的name -->
${ studentList[2].teacher.name } <!-- 輸出第三個學生的老師的name -->
(4)、Map中的資料。
伺服器端:
Map<String, Student> studentMap = new HashMap<String, Student>();
studentMap.put("Tom", stu1);
studentMap.put("Lucy", stu2);
studentMap.put("Lilei", stu3);
request.setAttribute(“studentMap”,studentMap);
在瀏覽器上打印出伺服器端繫結的Map資料:
${ studentMap.Tom.id } <!-- 輸出第一個學生的ID -->
${ studentMap.Lucy.name } <!-- 輸出第二個學生的name -->
${ studentMap.Lilei.teacher.name } <!-- 輸出第三個學生的老師的name -->