1.動態頁面技術UL
EL技術
- EL 表示式概述
EL(Express Lanuage)表示式可以嵌入在jsp頁面內部,減少jsp指令碼的編寫,EL 出現的目的是要替代jsp頁面中指令碼的編寫。
2.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域中 獲取屬性,在某個域中獲取後將不在向後尋找
- 獲得普通字串
- 獲得User物件的值
- 獲得List<User>的值
3. EL執行表示式
例如:
${1+1}
${empty user}
${user==null?true:false}
<%@page import="java.util.*"%> <%@page import="com.xiaowei.domain.*"%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <!-- 模擬儲存資料 --> <% //向request域中儲存一個姓名 request.setAttribute("name", "liumengfei"); pageContext.setAttribute("name", "xiaowei"); //向session域中儲存一個user User user = new User(); user.setId("1"); user.setName("zhangsan"); user.setPassword("123"); session.setAttribute("user", user); //向application域中儲存一個集合 //建立一個集合 List<User> list = new ArrayList<User>(); User user1 = new User(); user1.setId("2"); user1.setName("wuyong"); user1.setPassword("123"); list.add(user1); User user2 = new User(); user2.setId("3"); user2.setName("ziyou"); user2.setPassword("123"); list.add(user2); application.setAttribute("list", list); %> <!-- 使用指令碼獲取域中的值 --> <%=request.getAttribute("name") %> <% User sessionUser = (User)session.getAttribute("user"); out.write(sessionUser.getName()); %> <!-- 這種方法儲存集合太麻煩 就不用這 --> <!-- 使用el獲取域中的值 --> ${requestScope.name } ${sessionScope.user.name } ${applicationScope.list[1].name } <br> <!-- 使用el表示式全域性查詢 --> ${name } ${user.name } ${list[1].name } <br> <!-- el可以執行表示式運算 --> ${1+4 } ${3==3?true:false } <!-- 判斷list是否為空 如果為空返回true 如果不為空返回false --> ${empty list } </body> </html>
4.EL的內建物件11個(瞭解)
pageScope,requestScope,sessionScope,applicationScope
---- 獲取JSP中域中的資料
param,paramValues - 接收引數.
相當於request.getParameter() rquest.getParameterValues()
header,headerValues - 獲取請求頭資訊
相當於request.getHeader(name)
initParam - 獲取全域性初始化引數
相當於this.getServletContext().getInitParameter(name)
cookie - WEB開發中cookie
相當於request.getCookies()---cookie.getName()---cookie.getValue()
pageContext - WEB開發中的pageContext. (掌握)
pageContext獲得其他八大物件
${pageContext.request.contextPath}
相當於<%=pageContext.getRequest().getContextPath%> 這句程式碼不能實現
獲得WEB應用的名稱
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath }/el/form1.jsp"
method="post">
<input type="text" name="username"><br> <input
type="password" name="password"><br> <input
type="checkbox" name="hobby" value="zq">足球 <input
type="checkbox" name="hobby" value="pq">排球 <input
type="checkbox" name="hobby" value="ppq">乒乓球<br> <input
type="submit" value="提交"><br>
</form>
<img alt="" src="${pageContext.request.contextPath }/1.jpg">
<img alt="" src="${pageContext.request.contextPath }/2.jpg">
<img alt="" src="1.jpg">
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
kkkkkkkkkkkkkkk
</body>
</html>