1. 程式人生 > >EL技術&JSTL技術

EL技術&JSTL技術

libs this true align pass png arc href 內部

EL技術

EL 表達式概述

EL(Express Lanuage)表達式可以嵌入在jsp頁面內部,減少jsp腳本的編寫,EL出現的目的是要替代jsp頁面中腳本(java代碼)的編寫。

EL從域中取出數據(EL最重要的作用)

jsp腳本:<%=request.getAttribute(name)%>

EL表達式替代上面的腳本:${requestScope.name}

EL最主要的作用是獲得四大域中的數據,格式${EL表達式}

EL獲得pageContext域中的值:${pageScope.key};

EL獲得request域中的值:${requestScope.key};

EL獲得session域中的值:${sessionScope.key};

EL獲得application域中的值:${applicationScope.key};

EL從四個域中獲得某個值${key};

---同樣是依次從pageContext域,request域,session域,application域中獲取屬性,在某個域中獲取後將不在向後尋找

1)獲得普通字符串

2)獲得User對象的值

3)獲得List<User>的值

<!-- 模擬域中的數據 -->

<%

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

//存儲字符串

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

//存儲一個對象

Users user=new Users();

user.setId(1);

user.setUsername("lisi");

user.setPwd("123");

session.setAttribute("user", user);

//存儲一個集合

List<Users> list=new ArrayList<Users>();

Users user1=new Users();

user1.setId(1);

user1.setUsername("wangwu");

user1.setPwd("123");

list.add(user1);

Users user2=new Users();

user2.setId(1);

user2.setUsername("zhaoliu");

user2.setPwd("123");

list.add(user2);

application.setAttribute("List", list);

%>

<hr>

<!-- 使用腳本取出域中的值 -->

<%=request.getAttribute("name") %>

<%Users u=(Users)session.getAttribute("user");

out.write(u.getUsername());

%>

<hr>

<!-- 使用EL表達式取出域中的值 -->

${requestScope.name}

${sessionScope.user.username}

${applicationScope.List[0].pwd}

<hr>

<!-- 使用el表達式 全域查找(會從最小的找,底層就是findAttribute()) -->

${name }

${user.username}

${List[0].pwd}

EL的內置對象11個

pageScope,requestScope,sessionScope,applicationScope

---- 獲取JSP中域中的數據

param,paramValues - 接收參數.

相當於request.getParameter() request.getParameterValues()

header,headerValues - 獲取請求頭信息

相當於request.getHeader(name)

initParam - 獲取全局初始化參數

相當於this.getServletContext().getInitParameter(name)

cookie - WEB開發中cookie

相當於request.getCookies()---cookie.getName()---cookie.getValue()

Form.html

<form action="/WEB02/form.jsp" method="get">

<input type="text" name="username">

<input type="text" name="password">

<input type="submit" value="提交">

</form>

Form.jsp

<!-- 獲得表單的參數 -->

<%

request.getParameter("username");

//.....

%>

<!-- 使用EL獲得參數 -->

${param.username }

${header["User-Agent"] }

${cookie.abc.value }

<!-- 通過el表達式獲得request對象 -->

<%--${requestScope } --%>

${pageContext.request }

Cookie.jsp

<%

Cookie cookie=new Cookie("abc","zhangsan");

response.addCookie(cookie);

%>

Index.jsp

<form action="${pageContext.request.contextPath }/form.jsp" method="get">

<input type="text" name="username">

<input type="text" name="password">

<input type="submit" value="提交">

</form>

pageContext - WEB開發中的pageContext.

pageContext獲得其他八大對象

${pageContext.request.contextPath}

EL執行表達式

例如:

${1+1}

${empty user}

${user==null?true:false}

JSTL技術

JSTL概述

JSTL(JSP Standard Tag Library),JSP標準標簽庫,可以嵌入在jsp頁面中使用標簽的形式完成業務邏輯等功能。jstl出現的目的同el一樣也是要代替jsp頁面中的腳本代碼。JSTL標準標準標簽庫有5個子庫,但隨著發展,目前常使用的是他的核心庫

技術分享圖片

JSTL下載與導入

JSTL下載:

從Apache的網站下載JSTL的JAR包。進入“http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/”網址下載 JSTL的安裝包。jakarta-taglibs-standard-1.1.2.zip,然後將下載好的JSTL安裝包 進行解壓,此時,在lib目錄下可以看到兩個JAR文件,分別為jstl.jar和standard.jar。 其中,jstl.jar文件包含JSTL規範中定義的接口和相關類,standard.jar文件包含用於 實現JSTL的.class文件以及JSTL中5個標簽庫描述符文件(TLD)

技術分享圖片

將兩個jar包導入我們工程的lib中

使用jsp的taglib指令導入核心標簽庫

技術分享圖片

JSTL核心庫的常用標簽

1)<c:if test=””>標簽

其中test是返回boolean的條件

<%request.setAttribute("count", 10); %>

<!--jstl標簽經常會和el配合使用 -->

<!-- test代表的返回boolean的表達式 -->

<c:if test="${count==10 }">

xxxx

</c:if>

Index.jsp

<!-- 用戶沒有登陸 -->

<c:if test="${empty user }">

<a href="login.jsp">登陸</a>

<a href="register.jsp">註冊</a>

</c:if>

<!-- 用戶已經登陸 -->

<c:if test="${!empty user }">

<span>${user.name }</span>

<a href="#">退出</a>

</c:if>

Ceshi.jsp

<%

//模擬用戶已經登錄成功

User user=new User();

user.setId(100);

user.setName("張三");

user.setPwd("123");

session.setAttribute("user", user);

%>

2)<c:forEach>標簽

使用方式有兩種組合形式:

<!-- 模擬增強for productList---List<Product>

for(Product product:productList){

System.out.print(product.getName());

}

-->

<!-- items:一個集合或數組(從域中選) var:代表集合中的某一個元素 -->

<c:forEach items="${productList }" var="pro">

${pro.name }

</c:forEach>

<c:forEach items = "${map}" var="entry">
${entry.key }->${entry.value.name }<br>
</c:forEach>

示例:

1)遍歷List<String>的值

2)遍歷List<User>的值

3)遍歷Map<String,String>的值

4)遍歷Map<String,User>的值

5)遍歷Map<User,Map<String,User>>的值

entry.key-----User

entry.value------List<String,User>

EL技術&JSTL技術