EL表達式簡介

主要做用:

一、獲取數據
    EL表達式主要用於替換JSP頁面中的腳本表達式,以從各類類型的web域 中檢索java對象、獲取數據。(某個web域 中的對象,訪問javabean的屬性、訪問list集合、訪問map集合、訪問數組)
  二、執行運算
    利用EL表達式能夠在JSP頁面中執行一些基本的關係運算、邏輯運算和算術運算,以在JSP頁面中完成一些簡單的邏輯運算。${user==null}
  三、獲取web開發經常使用對象
    EL 表達式定義了一些隱式對象,利用這些隱式對象,web開發人員能夠很輕鬆得到對web經常使用對象的引用,從而得到這些對象中的數據。
  四、調用Java方法
    EL表達式容許用戶開發自定義EL函數,以在JSP頁面中經過EL表達式調用Java類的方法。
java

、獲取數據

使用EL表達式獲取數據語法:"${標識符}"在執行時,會調用pageContext.findAttribute方法,用標識符爲關鍵字,分別從page、request、session、application四個域中查找相應的對象,找到則返回相應對象,找不到則返回」」 (注意,不是null,而是空字符串)。 web

EL表達式能夠很輕鬆獲取JavaBean的屬性,或獲取數組、Collection、Map類型集合的數據 數組

el表達式獲取數據範例: cookie

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %> session

<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> app

<%@ page language="java"  import="java.util.*"%> jsp

<%@page import="com.dd.Person.*"%> //引入的包名 函數

<body> post

<% 測試

request.setAttribute("name","myname");

%>

<%--

${name}等同於pageContext.findAttribute("name")

--%> 使用EL表達式獲取數據:${name}

<hr>

<!--在jsp頁面中,使用el表達式能夠獲取bean的屬性-->

<%

Person p=new Person();

p.setUser("liki");

request.setAttribute("person",p);

%> 使用el表達式能夠獲取bean的屬必:${person.user}

<hr>

<!-- 在jsp頁面中,使用el表達式獲取list集合中指定位置的數據 -->

<%

  Person p=new Person();

  p.setUser("p1");

  Person p2=new Person();

  p2.setUser("p2");

  List<Personlists=new ArrayList<>();

  lists.add(p1);

  lists.add(p2);

  request.setAttribute("list",lists)

 %>

<!-- 取list指定位置的數據 -->

${list[1].user}

<!-- 迭代List集合 -->

<c:forEach var="person" items="${list}">

${person.user}

</c:forEach>

<hr />

<!-- ,使用el表達式獲取map集合的數據 -->

<%

   Map<String,String>map=new LinkedHashMap<String,String>();

   map.put("a","aa");

   map.put("b","bb");

   map.put("c","cc");

   map.put("d","dd");

   request.setAttribute("map",map);

  %>

  <!-- 根據關鍵字取map集合的數據 -->

  ${map.c}

  ${map["a"]}

  <hr />

  <!-- 迭代Map集合 -->

  <c:forEach var="me" items="${map}">

   ${me.key}=${me.value}<br />

  </c:forEach>

</body>

 

 

執行運算

  語法:${運算表達式},EL表達式支持以下運算符:

 

 

使用EL表達式執行運算範例:

<body>

<h3>el表達式進行關係運算</h3>

<%-- ${user == null}和 ${user eq null}兩種寫法等價--%>

${user == null}<br />

${user eq null }<br />

<h3>el表達式使用empty運算符檢查對象是否爲null(空)</h3>

<%

List<Stringlist=new ArrayList<>();

list.add("ss");

request.setAttribute("list",list);

%>

<%--使用empty運算符檢查對象是否爲null(空) --%>

<c:if test="${!empty(list)}">

<c:forEach var="item" items="${list}">

${item}<br />

</c:forEach>

</c:if>

<br />

<%

List<StringemptyList=null;

%>

<%--使用empty運算符檢查對象是否爲null(空) --%>

<c:if test="${empty(list)}">

no data

</c:if>

<h3>EL表達式中使用二元表達式</h3>

<%

session.setAttribute("user",new Person("session"));

%>

${user==null?"sorry,you no login":user.user}

<br />

<h3>EL表達式數據回顯</h3>

<%

Person pu=new Person();

pu.setUser("ss");

request.setAttribute("user",pu);

%>

<input type="text" name="gender" value="male" ${user.gender=='male'?'checked':''}>

</body>

 

得到web開發經常使用對象

  EL表達式語言中定義了11個隱含對象,使用這些隱含對象能夠很方便地獲取web開發中的一些常見對象,並讀取這些對象的數據。
  語法:${隱式對象名稱}:得到對象的引用

 

 

測試代碼:

<body>

<br/>一、pageContext對象:獲取JSP頁面中的pageContext對象<br/>

${pageContext}

<br/>二、pageScope對象:獲取JSP頁面中的pageScope對象<br/>

<%

pageContext.setAttribute("name","tt");

%>

${pageScope.name}

<br/>三、requestScope對象:從request域(requestScope)中獲取數據<br/>

<%

request.setAttribute("name1","requestScope");

%>

${requestScope.name};

<br/>四、sessionScope對象:從session域(sessionScope)中獲取數據<br/>

<%

session.setAttribute("sess","session");

%>

${sessionScope.sess};

<br/>五、applicationScope對象:從application域(applicationScope)中獲取數據<br/>

<%

application.setAttribute("appli","applicat");

%>

${applicationScope.appli}

<br/>六、param對象:得到用於保存請求參數map,並從map中獲取數據<br/>

<!-- http://localhost:8080/test_en/el_2.jsp?name=aaa  -->

${param.name}

<!--${param.username} 此表達式會常常用在數據回顯上 -->

<form action="${pageContext.request.contextPath}/servlet/RegServlet" method="post">

<input type="text" name="username" value="${param.username}">

<input type="submit" value="註冊">

</form>

<br/>七、paramValues對象:paramValues得到請求參數 <br/>

<!-- http://localhost:8080/test_en/el_2.jsp?name=aaa&&name=bbb -->

${paramValues.name[0]}

${paramValues.name[1]}

<br/>八、header對象:header得到請求頭<br/>

${header.Accept}<br />

<%--${header.Accept-Encoding} 這樣寫會報錯

 測試headerValues時,若是頭裏面有「-」 ,例Accept-Encoding,則要headerValues[「Accept-Encoding」]

--%>

${header["Accept-Encoding"]}

<br />九、headerValues對象:headerValues得到請求頭的值<br/>

<%--headerValues表示一個保存了全部http請求頭字段的Map對象,它對於某個請求參數,返回的是一個string[]數組 

例如:headerValues.Accept返回的是一個string[]數組 ,headerValues.Accept[0]取出數組中的第一個值

--%>

${headerValues.Accept[0]}<br/>

<%--${headerValues.Accept-Encoding} 這樣寫會報錯

 測試headerValues時,若是頭裏面有「-」 ,例Accept-Encoding,則要headerValues[「Accept-Encoding」]

 headerValues["Accept-Encoding"]返回的是一個string[]數組,headerValues["Accept-Encoding"][0]取出數組中的第一個值

--%>

${headerValues["Accept-Encoding"][0]}

<br/>十、cookie對象:cookie對象獲取客戶機提交的cookie<br/>

<!-- 從cookie隱式對象中根據名稱獲取到的是cookie對象,要想獲取值,還須要.value -->

 ${cookie.JSESSIONID.value}  //保存全部cookie的map

 <br/>十一、initParam對象:initParam對象獲取在web.xml文件中配置的初始化參數

 <!--

  web.xml文件中配置初始化參數

  <context-param>

  <param-name>aa</param-name>

  <param-value>bb</param-value>

   </context-param>

   <context-param>

    <param-name>root</param-name>

    <param-value>/test_en</param-value>

   </context-param>

 -->

 <%--獲取servletContext中用於保存初始化參數的map --%>

 ${initParam.aa}<br />

 ${initParam.root}

</body>

 

RegServlet.java代碼以下:

 public class RegServlet extends HttpServlet {

     /* 

      * 處理用戶註冊的方法

      */

     public void doGet(HttpServletRequest request, HttpServletResponse response)

             throws ServletException, IOException {

         //一、接收參數

         String userName = request.getParameter("username");

         /**

          * 二、直接跳轉回/el_2.jsp頁面,沒有使用request.setAttribute("userName", userName)將userName 存儲到request對象中

          * 可是在el_2.jsp頁面中可使用${param.username}獲取到request對象中的username參 數的值

          */

         request.getRequestDispatcher("/el_2.jsp").forward(request, response);

     }

 

     public void doPost(HttpServletRequest request, HttpServletResponse response)

             throws ServletException, IOException {

         doGet(request, response);

     }

 }

 

注意:
  測試header和headerValues時,若是頭裏面有「-」 ,

例Accept-Encoding,則要header["Accept-Encoding"]、headerValues["Accept-Encoding"]
  測試cookie時,例${cookie.key}取的是cookie對象,如訪問cookie的名稱和值,須${cookie.key.name}或${cookie.key.value}

 

使用EL調用Java方法

EL表達式語法容許開發人員開發自定義函數,以調用Java類的方法。語法:${prefix:method(params)}
  在EL表達式中調用的只能是Java類的靜態方法,這個Java類的靜態方法須要在TLD文件中描述,才能夠被EL表達式調用。
  EL自定義函數用於擴展EL表達式的功能,可讓EL表達式完成普通Java程序代碼所能完成的功能。

 

EL Function開發步驟

  通常來講, EL自定義函數開發與應用包括如下三個步驟:
  1、編寫一個Java類的靜態方法
  2、編寫標籤庫描述符(tld)文件,在tld文件中描述自定義函數。
  3、在JSP頁面中導入和使用自定義函數

自定義Function自行上網查相關詳細教程!

 



相關文章
相關標籤/搜索