一、el表達式簡介
代碼演示:在web目錄下創(chuàng)建test.jsp
<% request.setattribute("key", "value"); %> <%-- 表達式腳本輸出key1的值 --%> <%=request.getattribute("key1")%> <%-- el表達式輸出key1的值 --%> ${key1} <%-- 表達式腳本輸出null值時頁面顯示null el表達式輸出null值時頁面什么都不顯示(空串)--%>
運行結果:
二、el表達式搜索域數(shù)據(jù)的順序
el表達式主要是輸出域對象中的數(shù)據(jù),當四個域對象都有同一個key的值時,el表達式會按照四個域對象的范圍從小到大進行搜索,找到就輸出,與四個域對象聲明的先后順序無關
代碼演示:在web目錄下創(chuàng)建test.jsp
<% //向四個域對象中都保存相同key的值 request.setattribute("key", "request"); session.setattribute("key", "session"); application.setattribute("key", "application"); pagecontext.setattribute("key", "pagecontext"); %> <%-- 使用el表達式輸出key的值 --%> ${key}
運行結果:
三、el表達式輸出java類的屬性
代碼演示:創(chuàng)建person類
public class person { //輸出person類中普通屬性,數(shù)組屬性,list集合屬性和map集合屬性 private string name; private string[] phones; private list cities; private map map; //注意:沒有聲明age屬性 public int getage() { return 18; } //以及全參、空參構造器,各屬性的getter/setter方法 }
代碼演示:在web目錄下創(chuàng)建test.jsp
<% person person = new person(); person.setname("jaychou"); person.setphones(new string[]{"123","456","789"}); //給cities屬性賦值 list cities = new arraylist(); cities.add("北京"); cities.add("上海"); cities.add("深圳"); person.setcities(cities); //給map屬性賦值 map map = new hashmap<>(); map.put("key1","value1"); map.put("key2","value2"); map.put("key3","value3"); person.setmap(map); pagecontext.setattribute("p", person); %> <%--el表達式中對象名.屬性名不找屬性的值,而是找名字對應的getxxx方法,沒有此方法會報錯--%> 輸出person:${ p } 輸出person的name屬性:${p.name} 輸出person的phones數(shù)組地址值:${p.phones} 輸出person的phones數(shù)組屬性值:${p.phones[2]} 輸出person的cities集合中的元素值:${p.cities} 輸出person的list集合中個別元素值:${p.cities[2]} 輸出person的map集合: ${p.map} 輸出person的map集合中某個key的值: ${p.map.key1} <%-- 注意,即使沒有age屬性,但因為有getage方法,也可得出結果 --%> 輸出person的age值:${p.age}
運行結果:
四、el表達式的運算
語法:${運算表達式},el表達式支持以下運算符:
1. 關系運算
2. 邏輯運算
3. 算數(shù)運算
4. empty運算
empty運算可以判斷一個數(shù)據(jù)是否為空,若為空,輸出true,不為空,輸出false
以下幾種情況為空(在原本的key之前加empty關鍵字):
(1)值為null、空串
(2)值為object類型的數(shù)組且長度為0 (注:其他類型的長度為0的數(shù)組值為非空)
(3)list、map集合元素個數(shù)為0
5. 三元運算
表達式 1?表達式 2:表達式 3
表達式1為真返回表達式2的值,表達式1為假返回表達式3的值
代碼演示:在web目錄下創(chuàng)建test.jsp
<% //1、值為null值時 request.setattribute("emptynull", null); //2、值為空串時 request.setattribute("emptystr", ""); //3、值是object類型數(shù)組,長度為零的時候 request.setattribute("emptyarr", new object[]{}); //4、list集合,元素個數(shù)為零 list list = new arraylist<>(); request.setattribute("emptylist", list); //5、map集合,元素個數(shù)為零 map map = new hashmap(); request.setattribute("emptymap", map); //6、其他類型數(shù)組長度為0 request.setattribute("emptyintarr", new int[]{}); %> ${ empty emptynull } ${ empty emptystr } ${ empty emptyarr } ${ empty emptylist } ${ empty emptymap } ${ empty emptyintarr} <%-- 三元運算 --%> ${ 12 != 12 ? "相等":"不相等" }
運行結果:
6. “.”點運算和“[ ]”中括號運算
點運算可以輸出某個對象的某個屬性的值(getxxx或isxxx方法返回的值)
中括號運算可以輸出有序集合中某個元素的值
注:中括號運算可以輸出map集合中key里含有特殊字符的key的值
代碼演示:在web目錄下創(chuàng)建test.jsp
<% map map = new hashmap(); map.put("a.a.a", "aaavalue"); map.put("b+b+b", "bbbvalue"); map.put("c-c-c", "cccvalue"); request.setattribute("map", map); %> <%--特殊的key需要去掉最開始的"."并使用中括號和單引號(雙引號)包起來--%> ${ map['a.a.a'] } <%--如果不加中括號則相當于三個.運算--%> //錯誤的是 ${map.a.a.a} ${ map["b+b+b"] } <%--如果不加中括號則相當于三個+運算--%> ${ map['c-c-c'] } <%--如果不加中括號則相當于三個-運算--%>
運行結果:
五、el表達式的11個隱含對象
el表達式中的11個隱含對象是el表達式自己定義的,可以直接使用
(1) pagescope、requestscope、sessionscope、applicationscope對象的使用
代碼演示:在web目錄下創(chuàng)建test.jsp
<% pagecontext.setattribute("key1", "pagecontext1"); pagecontext.setattribute("key2", "pagecontext2"); request.setattribute("key2", "request"); session.setattribute("key2", "session"); application.setattribute("key2", "application"); %> <%-- 獲取特定域中的屬性 --%> ${ pagescope.key1 } ${ applicationscope.key2 } <%-- 若直接獲取key1或key2依然按照之前范圍從小到大檢索,無法獲取指定域 --%>
運行結果:
(2) pagecontext對象的使用
代碼示例:在web目錄下創(chuàng)建test.jsp
<%@ page contenttype="text/html;charset=utf-8" language="java" %> title <%-- 先通過pagecontext對象獲取request、session對象,再獲取以下內容 --%> <%-- 獲取請求的協(xié)議:request.getscheme() 獲取請求的服務器ip或域名:request.getservername() 獲取請求的服務器端口號:request.getserverport() 獲取當前工程路徑:request.getcontextpath() 獲取請求的方式:request.getmethod() 獲取客戶端的ip地址:request.getremotehost() 獲取會話的唯一標識:session.getid() --%> 1.協(xié)議: ${ pagecontext.request.scheme } 2.服務器ip:${ pagecontext.request.servername } 3.服務器端口:${ pagecontext.request.serverport } 4.獲取工程路徑:${ pagecontext.request.contextpath } 5.獲取請求方法:${ pagecontext.request.method } 6.獲取客戶端ip地址:${ pagecontext.request.remotehost } 7.獲取會話的id編號:${ pagecontext.session.id}
運行結果:
(3) param、paramvalues對象的使用
代碼示例:在web目錄下創(chuàng)建test.jsp
獲取請求參數(shù)username的值:${ param.username } 獲取請求參數(shù)password的值:${ param.password } 獲取請求參數(shù)中第一個hobby的值:${ paramvalues.hobby[0] } 獲取請求參數(shù)中第二個hobby的值:${ paramvalues.hobby[1] } <%-- 有多個同名的key時使用paramvalues的索引值決定獲取哪一個,使用param只可獲取第一個 --%> 使用param獲取hobby的值:${ param.hobby }
運行結果:
瀏覽器地址欄輸入:http://localhost:8080/mytest/test.jsp?username=jaychou&password=123&hobby=sing&hobby=dance
(4) header、headervalues對象的使用
代碼示例:在web目錄下創(chuàng)建test.jsp
輸出請求頭[user-agent]的值:${ header["user-agent"] } 輸出請求頭中第一個[user-agent]的值:${ headervalues["user-agent"][0] }
(5) cookie對象的使用
代碼示例:在web目錄下創(chuàng)建test.jsp
獲取cookie的名稱:${ cookie.jsessionid.name } 獲取cookie的值:${ cookie.jsessionid.value }
運行結果:
(6) initparam對象的使用
代碼示例:在web.xml中寫參數(shù) (修改了web.xml中內容之后,需要重啟服務才可生效)
username root url jdbc:mysql:///test
在web目錄下創(chuàng)建test.jsp
輸出<context-param>username的值:${ initparam.username } 輸出<context-param>url的值:${ initparam.url }
運行結果: