EL表達式
- EL作用
- jsp的核心語法: jsp表達式 <%=%>和 jsp腳本<% %>
- 以后開發(fā)jsp的原則: 盡量在jsp頁面中少寫甚至不寫java代碼。
- 使用EL表達式替換掉jsp表達式
- EL表達式作用: 向瀏覽器輸出域?qū)ο笾械淖兞恐祷虮磉_式計算的結(jié)果窥妇!
- 語法:${變量或表達式}
- EL語法
1)輸出基本數(shù)據(jù)類型變量- 1.1 從四個域獲取: ${name}
- 1.2 指定域獲取 : ${pageScope.name}
- 域范圍 : pageScoep / requestScope / sessionScope / applicationScope
2)輸出對象的屬性值
3)輸出集合對象 : List 和 Map
4)EL表達式計算
- 域范圍 : pageScoep / requestScope / sessionScope / applicationScope
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>EL語法</title>
</head>
<body>
<%
String name = "rose";
//放入域中
//pageContext.setAttribute("name",name);
pageContext.setAttribute("name",name,PageContext.REQUEST_SCOPE);
%>
<%=name %>
<br/>
<%-- 1. 從四個域自動搜索--%>
EL表達式: ${name }
<%-- ${name } 等價于<%=pageContext.findAttribute("name")%> --%>
<%-- 2. 從指定的域中獲取數(shù)據(jù) --%>
EL表達式: ${pageScope.name }
<%-- ${pageScope.name } 等價于<%= pageContext.getAttribute("name",PageContext.PAGE_SCOPE)%> --%>
</body>
</html>
<%@ page language="java" import="java.util.*,gz.itcast.b_entity.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>EL輸出不同類型的數(shù)據(jù)</title>
</head>
<body>
<%--EL輸出對象的屬性--%>
<%
//保存數(shù)據(jù)
Student student = new Student("eric",20);
//放入域中
pageContext.setAttribute("student",student);
//List
List<Student> list = new ArrayList<Student>();
list.add(new Student("rose",18));
list.add(new Student("jack",28));
list.add(new Student("lucy",38));
//放入域中
pageContext.setAttribute("list",list);
//Map
Map<String,Student> map = new HashMap<String,Student>();
map.put("100",new Student("mark",20));
map.put("101",new Student("maxwell",30));
map.put("102",new Student("narci",40));
//放入域中
pageContext.setAttribute("map",map);
%>
<%--使用EL獲取對象 --%>
${student.name} - ${student.age }
<%-- ${student.name} 等價于 (點相對于調(diào)用getXX() 方法) <%=((Student)pageContext.findAttribute("student")).getName()%> --%>
<hr/>
<%--使用EL獲取List對象 --%>
${list[0].name } - ${list[0].age }<br/>
${list[1].name } - ${list[1].age }<br/>
${list[2].name } - ${list[2].age }
<%-- list[0]等價于(中括號相對于調(diào)用get(參數(shù))方法) ((List)pageContext.findAttribute("list")).get(0) --%>
<hr/>
<%--使用EL獲取Map對象 --%>
${map['100'].name } - ${map['100'].age }<br/>
${map['101'].name } - ${map['101'].age }<br/>
${map['102'].name } - ${map['102'].age }<br/>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>EL表達式計算</title>
</head>
<body>
<%-- 1)算術(shù)表達式:+, -, *, /, --%>
${10+5 }<br/>
${10*5 }
<hr/>
<%-- 2)比較運算: >, <, >=, <=, ==, !=, --%>
${10>5 }<br/>
${10<5 }<br/>
${10!=10 }
<hr/>
<%-- 3)邏輯運算:&&, ||, !, --%>
${true && false }<br/>
${true || false }<br/>
${!false }<br/>
<hr/>
<%-- 4)判空: null 或 空字符串: empty --%>
<%
//String name = "eric";
//String name = null;
String name = "";
pageContext.setAttribute("name",name);
%>
判斷null: ${name==null }<br/>
判斷空字符: ${name=="" }<br/>
判空: ${name==null || name=="" }
另一種判空寫法: ${empty name }
</body>
</html>
jsp標(biāo)簽
- jsp標(biāo)簽的作用 : 替換jsp腳本
1)流程判斷(if for循環(huán))
2)跳轉(zhuǎn)頁面(轉(zhuǎn)發(fā)内斯,重定向) - Jsp標(biāo)簽分類
1)內(nèi)置標(biāo)簽(動作標(biāo)簽): 不需要在jsp頁面導(dǎo)入標(biāo)簽
2)jstl標(biāo)簽: 需要在jsp頁面中導(dǎo)入標(biāo)簽
3)自定義標(biāo)簽 : 開發(fā)者自行定義路幸,需要在jsp頁面導(dǎo)入標(biāo)簽 - 動作標(biāo)簽
- 轉(zhuǎn)發(fā)標(biāo)簽: <jsp:forward />
- 參數(shù)標(biāo)簽: <jsp:pararm/>
- 包含標(biāo)簽: <jsp:include/>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>動作標(biāo)簽</title>
</head>
<body>
<%--轉(zhuǎn)發(fā) --%>
<%
//request.getRequestDispatcher("/09.action2.jsp?name=eric").forward(request,response);
%>
<%-- 參數(shù) --%>
<%--
<jsp:forward page="/09.action2.jsp">
<jsp:param value="jacky" name="name"/>
<jsp:param value="123456" name="password"/>
</jsp:forward>
--%>
<%--包含 --%>
<%--
<jsp:include page="/common/header.jsp">
<jsp:param value="lucy" name="name"/>
</jsp:include>
--%>
<%@include file="common/header.jsp" %>
主頁的內(nèi)容
</body>
</html>
原理 : 包含與被包含的頁面先各自翻譯成java源文件咱旱,然后再運行時合并在一起(先翻譯再合并)
-
靜態(tài)包含 vs 動態(tài)包含的區(qū)別允坚?
1)語法不同- 靜態(tài)包含語法 :
<%@inclue file="被包含的頁面"%>
- 動態(tài)包含語法 :
<jsp:include page="被包含的頁面">
2)參數(shù)傳遞不同
- 靜態(tài)包含不能向被包含頁面?zhèn)鬟f參數(shù)
- 動態(tài)包含可以向被包含頁面?zhèn)鬟f參數(shù)
3)原理不同
- 靜態(tài)包含: 先合并再翻譯
- 動態(tài)包含: 先翻譯再合并
- 靜態(tài)包含語法 :
JSTL標(biāo)簽(全名:java standard tag libarary - java標(biāo)準(zhǔn)標(biāo)簽庫)
核心標(biāo)簽庫(c標(biāo)簽庫)天天用
國際化標(biāo)簽(fmt標(biāo)簽庫)
EL函數(shù)庫(fn函數(shù)庫)
xml標(biāo)簽庫(x標(biāo)簽庫)
sql標(biāo)簽庫(sql標(biāo)簽庫)
使用JSTL標(biāo)簽步驟 :
1)導(dǎo)入jstl支持的jar包(標(biāo)簽背后隱藏的java代碼) : 注意:使用javaee5.0的項目自動導(dǎo)入jstl支持jar包
2)使用taglib指令導(dǎo)入標(biāo)簽庫 :<%@taglib uri="tld文件的uri名稱" prefix="簡寫" %>
3)在jsp中使用標(biāo)簽-
核心標(biāo)簽庫的重點標(biāo)簽
- 保存數(shù)據(jù):
<c:set></c:set>
- 獲取數(shù)據(jù):
<c:out value=""></c:out>
- 單條件判斷:
<c:if test=""></c:if>
- 多條件判斷 :
<c:choose></c:choose>
<c:when test=""></c:when>
<c:otherwise></c:otherwise>
- 循環(huán)數(shù)據(jù) :
<c:forEach></c:forEach>
<c:forTokens items="" delims=""></c:forTokens>
- 重定向 :
<c:redirect></c:redirect>
- 保存數(shù)據(jù):
<%@ page language="java" import="java.util.*,gz.itcast.b_entity.*" pageEncoding="utf-8"%>
<%--導(dǎo)入標(biāo)簽庫 --%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>核心標(biāo)簽庫</title>
</head>
<body>
<%--使用標(biāo)簽 --%>
<%--set標(biāo)簽 :保存數(shù)據(jù)(保存到域中)默認(rèn)保存到page域 --%>
<c:set var="name" value="rose" scope="request"></c:set>
<%
String msg = null;
pageContext.setAttribute("msg",msg);
%>
${msg }
<br/>
<%--out標(biāo)簽: 獲取數(shù)據(jù)(從域中)
default: 當(dāng)value值為null時漫试,使用默認(rèn)值
escapeXml: 是否對value值進行轉(zhuǎn)義,false诡右,不轉(zhuǎn)義安岂,true,轉(zhuǎn)義(默認(rèn))
--%>
<c:out value="${msg}" default="<h3>標(biāo)題3</h3>" escapeXml="true"></c:out>
<hr/>
<%--if標(biāo)簽 :單條件判斷--%>
<c:if test="${!empty msg}">
條件成立
</c:if>
<hr/>
<%--choose標(biāo)簽+when標(biāo)簽+otherwirse標(biāo)簽: 多條件判斷 --%>
<c:set var="score" value="56"></c:set>
<c:choose>
<c:when test="${score>=90 && score<=100}">
優(yōu)秀
</c:when>
<c:when test="${score>=80 && score<90}">
良好
</c:when>
<c:when test="${score>=70 && score<80}">
一般
</c:when>
<c:when test="${score>=60 && score<70}">
及格
</c:when>
<c:otherwise>
不及格
</c:otherwise>
</c:choose>
<%-- forEach標(biāo)簽:循環(huán) --%>
<%
//List
List<Student> list = new ArrayList<Student>();
list.add(new Student("rose",18));
list.add(new Student("jack",28));
list.add(new Student("lucy",38));
//放入域中
pageContext.setAttribute("list",list);
//Map
Map<String,Student> map = new HashMap<String,Student>();
map.put("100",new Student("mark",20));
map.put("101",new Student("maxwell",30));
map.put("102",new Student("narci",40));
//放入域中
pageContext.setAttribute("map",map);
%>
<hr/>
<%--
begin="" : 從哪個元素開始遍歷帆吻,從0開始.默認(rèn)從0開始
end="": 到哪個元素結(jié)束域那。默認(rèn)到最后一個元素
step="" : 步長 (每次加幾) ,默認(rèn)1
items="": 需要遍歷的數(shù)據(jù)(集合)
var="": 每個元素的名稱
varStatus="": 當(dāng)前正在遍歷元素的狀態(tài)對象猜煮。(count屬性:當(dāng)前位置次员,從1開始)
--%>
<c:forEach items="${list}" var="student" varStatus="varSta">
序號:${varSta.count} - 姓名:${student.name } - 年齡:${student.age}<br/>
</c:forEach>
<hr/>
<c:forEach items="${map}" var="entry">
${entry.key } - 姓名: ${entry.value.name } - 年齡:${entry.value.age }<br/>
</c:forEach>
<hr/>
<%-- forToken標(biāo)簽: 循環(huán)特殊字符串 --%>
<%
String str = "java-php-net-平面";
pageContext.setAttribute("str",str);
%>
<c:forTokens items="${str}" delims="-" var="s">
${s }<br/>
</c:forTokens>
<%--redrict:重定向 --%>
<c:redirect url="http://www.baidu.com"></c:redirect>
</body>
</html>