一、EL表达式
1.1 EL表达式概述
EL 表达式的全称是:Expression Language。是表达式语言。
EL表达式的作用:
EL 表达式主要是代替 jsp 页面中的表达式脚本在 jsp 页面中进行数据的输出。
(因为EL表达式在输出数据的时候,要比 jsp的表达式脚本要简洁很多。)
EL 表达式的格式是:
${表达式}
注意:EL 表达式在输出 null 值的时候,输出的是空串。jsp 表达式脚本输出 null 值的时候,输出的是 null 字符串。
1.2 EL表达式搜索域数据的顺序
EL表达式主要是在 jsp 页面中输出域对象中的数据。
当四个域中都有相同的 key 的数据的时候,EL 表达式会按照四个域的从小到大的顺序去进行搜索,找到就输出。
1.3 EL表达式输出Bean的普通属性,数组属性,List 集合属性,map 集合属性
Person类:
public class Person {
private String name;
private String[] phones;
private List<String> cities;
private Map<String,Object> map;
//set和get方法
}
jsp代码:
<html>
<head>
<title>Title</title>
</head>
<body>
<%
Person person = new Person();
person.setName("国哥好帅");
person.setPhones(new String[]{"23344","433423","34234"});
List<String> cities = new ArrayList<>();
cities.add("北京");
cities.add("郑州");
cities.add("上海");
person.setCities(cities);
Map<String,Object> map = new HashMap<>();
map.put("key1","value1");
map.put("key2","value2");
map.put("key3","value3");
person.setMap(map);
pageContext.setAttribute("p",person);
%>
输出Person:${ p }<br/>
输出Person的name属性:${p.name} <br>
输出Person的pnones数组属性值:${p.phones[2]} <br>
输出Person的cities集合中的元素值:${p.cities} <br>
输出Person的List集合中个别元素值:${p.cities[2]} <br>
输出Person的Map集合: ${p.map} <br>
输出Person的Map集合中某个key的值: ${p.map.key3} <br>
输出Person的Map集合中某个key的值: ${p.map['key2']} <br>
</body>
</html>
1.4 EL表达式—— 运算
1.4.1 关系运算
关系运算符 | 说明 | 范例 | 结果 |
---|---|---|---|
== 或 eq | 等于 | ${ 5 == 5 } 或 ${ 5 eq 5 } | true |
!= 或 ne | 不等于 | ${ 5 !=5 } 或 ${ 5 ne 5 } | false |
< 或 lt | 小于 | ${ 3 < 5 } 或 ${ 3 lt 5 } | true |
> 或 gt | 大于 | ${ 2 > 10 } 或 ${ 2 gt 10 } | false |
<= 或 le | 小于等于 | ${ 5 <= 12 } 或 ${ 5 le 12 } | true |
>= 或 ge | 大于等于 | ${ 3 >= 5 } 或 ${ 3 ge 5 } | false |
1.4.2 逻辑运算
逻辑运算符 | 说明 | 范例 | 结果 |
---|---|---|---|
&& 或 and | 与运算 | ${ 12 == 12 && 12 < 11 } 或 ${ 12 == 12 and 12 < 11 } | false |
|| 或 or | 或运算 | ${ 12 == 12 || 12 < 11 } 或 ${ 12 == 12 or 12 < 11 } | true |
! 或 not | 取反运算 | ${ !true } 或 ${not true } | false |
1.4.3 算数运算
算数运算符 | 说明 | 范例 | 结果 |
---|---|---|---|
+ | 加法 | ${ 12 + 18 } | 30 |
- | 减法 | ${ 18 - 8 } | 10 |
* | 乘法 | ${ 12 * 12 } | 144 |
/ 或 div | 除法 | ${ 144 / 12 } 或 ${ 144 div 12 } | 12 |
% 或 mod | 取模 | ${ 144 % 10 } 或 ${ 144 mod 10 } | 4 |
1.4.4 empty运算
empty运算可以判断一个数据是否为空,如果为空,则输出 true,不为空输出 false。
以下几种情况为空:
1、值为 null 值的时候,为空
2、值为空串的时候,为空
3、值是 Object 类型数组,长度为零的时候
4、list 集合,元素个数为零
5、map 集合,元素个数为零
1.4.5 三元运算
表达式 1?表达式 2:表达式 3
如果表达式 1 的值为真,返回表达式 2 的值,如果表达式 1 的值为假,返回表达式 3 的值。
${12==12 ? "nihao":"gun"}
1.4.6 "."点运算 和 []中括号运算符
.点运算,可以输出 Bean 对象中某个属性的值。
[]中括号运算,可以输出有序集合中某个元素的值。
并且[]中括号运算,还可以输出 map 集合中 key 里含有特殊字符的 key 的值。
1.5 EL表达式的11个隐含对象
EL个达式中11个隐含对象,是EL表达式中自己定义的,可以直接使用。
变量 | 类型 | 作用 |
---|---|---|
pageContext | PageContextImpl | 它可以获取 jsp 中的九大内置对象 |
pageScope | Map<String,Object> | 它可以获取 pageContext 域中的数据 |
requestScope | Map<String,Object> | 它可以获取 Request 域中的数据 |
sessionScope | Map<String,Object> | 它可以获取 Session 域中的数据 |
applicationScope | Map<String,Object> | 它可以获取 ServletContext 域中的数据 |
param | Map<String,String> | 它可以获取请求参数的值 |
paramValues | Map<String,String[]> | 它也可以获取请求参数的值,获取多个值的时候使用。 |
header | Map<String,String> | 它可以获取请求头的信息 |
headerValues | Map<String,String[]> | 它可以获取请求头的信息,它可以获取多个值的情况 |
cookie | Map<String,Cookie> | 它可以获取当前请求的 Cookie 信息 |
initParam | Map<String,String> | 它可以获取在 web.xml 中配置的上下文参数 |
1.5.1 EL获取四个特定域中的属性
pageScope ======> pageContext 域
requestScope ======> Request 域
sessionScope ======> Session 域
applicationScope ======> ServletContext 域
<%
pageContext.setAttribute("key1","pageContext1");
pageContext.setAttribute("key2","pageContext2");
request.setAttribute("key1","request");
session.setAttribute("key1","session");
application.setAttribute("key1","application");
%>
${key1}<br/>
${pageScope.key2}<br/>//获取pageContext域中的数据
${requestScope.key1}<br/>//获取Request域中的数据
${sessionScope.key1}<br/>//获取Session域中的数据
${applicationScope.key1}<br/>//获取ServletContext域中的数据
1.5.2 pageContext 对象的使用
1. 协议:
2. 服务器 ip:
3. 服务器端口:
4. 获取工程路径:
5. 获取请求方法:
6. 获取客户端 ip 地址:
7. 获取会话的 id 编号:
<body>
/*
request.getScheme() 它可以获取请求的协议
request.getServerName() 获取请求的服务器 ip 或域名
request.getServerPort() 获取请求的服务器端口号
getContextPath() 获取当前工程路径
request.getMethod() 获取请求的方式( GET 或 POST )
request.getRemoteHost() 获取客户端的 ip 地址
session.getId() 获取会话的唯一标识
*/
<%
pageContext.setAttribute("req",request);
%>
1. 协议:${pageContext.request.scheme}<br/>
${req.scheme}<br/><%--简写--%>
2. 服务器 ip:${pageContext.request.serverName}<br/>
3. 服务器端口:${pageContext.request.serverPort}<br/>
4. 获取工程路径:${pageContext.request.contextPath}<br/>
5. 获取请求方法:${pageContext.request.method}<br/>
6. 获取客户端 ip 地址:${pageContext.request.remoteHost}<br/>
7. 获取会话的 id 编号:${pageContext.session.id}<br/>
</body>
1.5.3 EL表达式其他隐含对象的使用
param Map<String,String> 它可以获取请求参数的值
paramValues Map<String,String[]> 它也可以获取请求参数的值,获取多个值的时候使用。
<body>
输出请求参数username的值:${param.username}<br/>
输出请求参数password的值:${param.password}<br/>
输出请求参数username的值:${paramValues.username[0]}<br/>
输出请求参数password的值:${paramValues.password[0]}<br/>
输出请求参数hobby的值:${paramValues.hobby[0]}<br/>
输出请求参数hobby的值:${paramValues.hobby[1]}<br/>
/*请求地址:http://localhost:8080/09_EL_JSTL/other_el_obj.jsp?username=jack&password=root&hobby=java&hobby=c*/
</body>
header Map<String,String> 它可以获取请求头的信息
headerValues Map<String,String[]> 它可以获取请求头的信息,它可以获取多个值的情况
<body>
输出请求头【User-Agent】的值:${header['User-Agent']}<br/>
输出请求头【Connection】的值:${header.Connection }<br/>
输出请求头【User-Agent】的值:${headerValues['User-Agent'][0]}<br/>
</body>
cookie Map<String,Cookie> 它可以获取当前请求的 Cookie 信息
<body>
获取Cookie的名称:${ cookie.JSESSIONID.name } <br>
获取Cookie的值:${ cookie.JSESSIONID.value } <br>
</body>
initParam Map<String,String> 它可以获取在 web.xml 中配置的<context-param>上下文参数
<body>
输出<Context-param>username的值:${initParam.username}<br/>
输出<Context-param>url的值:${initParam.url}<br/>
</body>
web.xml中的配置:
<context-param>
<param-name>username</param-name>
<param-value>root</param-value>
</context-param>
<context-param>
<param-name>url</param-name>
<param-value>jdbc:mysql:///test</param-value>
</context-param>
二、JSTL标签库
- JSTL 标签库全称是指 JSP Standard Tag Library JSP 标准标签库。是一个不断完善的开放源代码的 JSP 标签库。
- EL 表达式主要是为了替换 jsp 中的表达式脚本,而标签库则是为了替换代码脚本。这样使得整个 jsp 页面变得更佳简洁。
JSTL 由五个不同功能的标签库组成
功能范围 | URI | 前缀 |
---|---|---|
核心 标签库-- 重点 | http://java.sun.com/jsp/jstl/core | c |
格式化 | http://java.sun.com/jsp/jstl/fmt | fmt |
函数 | http://java.sun.com/jsp/jstl/functions | fn |
数据库(不使用) | http://java.sun.com/jsp/jstl/sql | sql |
XML(不使用) | http://java.sun.com/jsp/jstl/xml | x |
在 jsp 标签库中使用 taglib 指令引入标签库
CORE 标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
XML 标签库
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
FMT 标签库
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
SQL 标签库
<%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
FUNCTIONS 标签库
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
2.1 JSTL 标签库的使用步骤
第一步,先导入jstl标签库的jar包。
taglibs-standard-impl-1.2.1.jar
taglibs-standard-spec-1.2.1.jar
第二步,使用taglib指令引入标签库。
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
2.2 core核心库使用
2.2.1 <c:set /> (使用很少)
作用:set 标签可以往域中保存数据
2.2.2 <c:if />
if 标签用来做 if 判断。
2.2.3 <c:choose> <c:when> <c:otherwise> 标签
作用:多路判断。跟 switch … case … default 非常接近
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<%--
<c:choose> <c:when> <c:otherwise> 标签
作用:多路判断。跟 switch ... case .... default 非常接近
choose 标签开始选择判断
when 标签表示每一种判断情况
test 属性表示当前这种判断情况的值
otherwise 标签表示剩下的情况
<c:choose> <c:when> <c:otherwise> 标签使用时需要注意的点:
1 、标签里不能使用 html 注释,要使用 jsp 注释
2 、 when 标签的父标签一定要是 choose 标签
--%>
<% request.setAttribute("height",178);%>
<c:choose>
<c:when test="${height > 180}">
<h1>大于180</h1>
</c:when>
<c:when test="${height > 170}">
<h1>大于170</h1>
</c:when>
<c:otherwise>
<c:choose>
<c:when test="${height > 160}">
<h1>大于160</h1>
</c:when>
<c:otherwise>
<h1>小于160</h1>
</c:otherwise>
</c:choose>
</c:otherwise>
</c:choose>
</body>
</html>
2.2.4 <c:forEach />
作用:遍历输出使用。
- 遍历1到10,输出
- 遍历Object数组
- 遍历map集合
- 遍历 List 集合—list 放 中存放 Student 类 , 有属性 : 编号 , 用户名 , 密码 , 年龄 ,电话信息。
Student 类:
public class Student {
private Integer id;
private String username;
private String password;
private Integer age;
private String phone;
//set,get方法
}
<%@ page import="java.util.HashMap" %>
<%@ page import="java.util.Map" %>
<%@ page import="java.util.ArrayList" %>
<%@ page import="com.zb.pojo.Student" %>
<%@ page import="java.util.List" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<title>Title</title>
</head>
<body>
<%
List<Student> listStudent = new ArrayList<>();
for(int i = 1;i<=10;i++){
listStudent.add(new Student(i,"姓名"+i,"密码"+i,i+18,"12345"+i));
}
request.setAttribute("stus",listStudent);
%>
<%--
items 表示遍历的集合
var 表示遍历到的数据
begin 表示遍历的开始索引值
end 表示结束的索引值
step 属性表示遍历的步长值
varStatus 属性表示当前遍历到的数据的状态
for ( int i = 1; i < 10; i+=2 )
--%>
<table>
<c:forEach begin="2" end="7" step="2" varStatus="status" items="${stus}" var="stu" >
<tr>
<td>${stu.id}</td>
<td>${stu.username}</td>
<td>${stu.password}</td>
<td>${stu.age}</td>
<td>${stu.phone}</td>
<td>${status.step}</td><%--获取遍历的步长值--%>
</tr>
</c:forEach>
</table>
</body>
</html>