java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > JSTL标签库

Java的JSTL标签库详解

作者:@每天都要敲代码

JSTL包含用于编写和开发JSP页面的一组标准标签,它可以为用户提供一个无脚本环境。在此环境中,用户可以使用标签编写代码,而无须使用Java脚本

一:深入解析JSTL标签库 

1、什么是JSTL标签库

①Java Standard Tag Lib(Java标准的标签库)。

②JSTL标签库通常结合EL表达式一起使用,目的是让JSP中的java代码消失。

③标签是写在JSP当中的,但实际上最终还是要执行对应的java程序(java程序在jar包当中)

2、使用JSTL标签库的步骤 

第一步:引入JSTL标签库对应的jar包

第二步:在JSP中引入要使用标签库

①使用taglib指令引入标签库

②JSTL提供了很多种标签,重点掌握核心标签库 ://java.sun.com/jsp/jstl/core

③语法格式如下:

prefix="起的名字,核心标签库,一般默认叫做c,可随意。"

uri=//java.sun.com/jsp/jstl/core 表示使用的是这个库

<%@taglib prefix="c" uri="//java.sun.com/jsp/jstl/core" %>

第三步: 在需要使用标签的位置使用即可

①表面使用的是标签,底层实际上还是java程序 。

②例如:<c:catch></c:catch> 实际上对应的就是一个java类。

3、JSTL标签的原理

<tag>
        <description>  对标签的描述
            Catches any Throwable that occurs in its body and optionally
            exposes it.
        </description>
        <name>catch</name> 标签的名字
        <tag-class>
            org.apache.taglibs.standard.tag.common.core.CatchTag
        </tag-class> 标签对应的java类
        <body-content>JSP</body-content>标签体当中可以出现的内容,如果是JSP,就表示标签体中可以出现符合JSP所有语法的代码。例如EL表达式(属于JSP的)。
        <attribute>  属性
            <description> 对这个属性的描述
                Name of the exported scoped variable for the
                exception thrown from a nested action. The type of the
                scoped variable is the type of the exception thrown.
            </description>
            <name>var</name> 属性名
            <required>false</required> false表示该属性不是必须的。true表示该属性是必须的。
            <rtexprvalue>false</rtexprvalue> 这个描述说明了该属性是否支持EL表达式。false表示不支持。true表示支持EL表达式。
        </attribute>
    </tag>
<c:catch var="">
	JSP....
</c:catch>
<%@ page import="com.bjpowernode.javaweb.jsp.Student" %>
<%@ page import="java.util.*" %>
<%@page contentType="text/html; charset=UTF-8" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
    // 创建List集合
    List<Student> stuList = new ArrayList<>();
    // 创建Student对象
    Student s1 = new Student("110", "经常");
    Student s2 = new Student("120", "救护车");
    Student s3 = new Student("119", "消防车");
    // 添加到List集合中
    stuList.add(s1);
    stuList.add(s2);
    stuList.add(s3);
    // 将list集合存储到request域当中
    request.setAttribute("stuList", stuList);
%>
<%--第一种方式:使用Java代码,把for循环拆分了,看起来很诡异--%>
<%
    /// 从域中获取List集合
    List<Student> stus = (List<Student>)request.getAttribute("stuList");
    // 编写for循环遍历list集合
    for(Student stu: stus){
%>
    id:<%=stu.getId()%>,name:<%=stu.getName()%><br>
<%
    }
%>
<%--第二种方式:使用JSTL标签库中的forEach标签,非常简明、美观--%>
<c:forEach items="${stuList}" var="s">
    id:${s.id},name:${s.name}<br>
</c:forEach>

4、jstl中的核心标签库core当中常用的标签

(1)if标签

  • ①语法格式:<c:if test=" "></c: if> 。
  • ②test属性是必须的,test属性支持EL表达式;test属性值只能是boolean类型。
  • ③if标签还有var属性,不是必须的;v变量中存储的是test属性的值。
  • ④还有scope属性,用来指定var的存储域,也不是必须的。scope有四个值可选:page(pageContext域)、request(request域)、session(session域)、application(application域)
<%@page contentType="text/html;charset=UTF-8" %>
<%--引入核心标签库--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--if标签,test属性是必须的--%>
<c:if test="${empty param.username}">
    <h1>用户名不能为空</h1>
</c:if>
<c:if test="${not empty param.username}" var="v" scope="request">
    <h1>欢迎${param.username}登录</h1>
</c:if>
<%--通过EL表达式将request域当中的v取出--%>
${v}

发送请求//localhost:8080/jsp/18.jsp​​​​​​ ,前端没有传入username,后端就取不到数据,调用隐式对象param.username返回的就是一个false;所以变量v取出来的也就是false

发送请求//localhost:8080/jsp/18.jsp?username=zhangsan,前端传入username为张三,后端就能取到数据,调用隐式对象param.username返回的就是一个true;所以变量v取出来的也就是true

(2)forEach标签

①<c:forEach var="i" begin="1" end="10" step="2"> ${i} </c: forEach> ;var用来指定循环中的变量;begin开始;end结束;step步长。forEach底层实际上会将i存储到pageContext域当中;因为EL表达式只能从某个域当中取数据!

<%@ page contentType="text/html;charset=UTF-8"%>
<%--引入核心标签库--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--forEach底层实际上:会将i存储到pageContext域当中--%>
<c:forEach var="i" begin="1" end="10" step="2">
     <%--所以这里才会使用EL表达式将其取出,因为EL表达式只能从某个域当中取数据--%>
    ${i}&nbsp;
</c:forEach>

执行结果如下:

②varStatus属性:表示var的状态对象,这里是一个java对象,这个java对象代表了var的状态;并且varStatus这个状态对象有count属性,可以直接使用。

<%@ page import="com.bjpowernode.javaweb.jsp.Student" %>
<%@ page import="java.util.*" %>
<%@ page contentType="text/html;charset=UTF-8"%>
<%--引入核心标签库--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
    // 创建List集合
    List<Student> stuList = new ArrayList<>();
    // 创建Student对象
    Student s1 = new Student("110", "经常");
    Student s2 = new Student("120", "救护车");
    Student s3 = new Student("119", "消防车");
    // 添加到List集合中
    stuList.add(s1);
    stuList.add(s2);
    stuList.add(s3);
    // 将list集合存储到request域当中
    request.setAttribute("stuList", stuList);
%>
<c:forEach items="${stuList}" var="s" varStatus="stuStatus">
    <%--varStatus的count值从1开始,以1递增,主要是用于编号/序号。--%>
    编号:${stuStatus.count} &nbsp;,id:${s.id},name:${s.name} <br>
</c:forEach>

执行结果:

(3)choose-when-otherwise

①这实际上是一个嵌套结构,语法格式是固定的,不能随意使用!

<%@page contentType="text/html;charset=UTF-8" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:choose>
    <c:when test="${param.age < 18}">
        青少年
    </c:when>
    <c:when test="${param.age < 35}">
        青年
    </c:when>
    <c:when test="${param.age < 55}">
        中年
    </c:when>
    <c:otherwise>
        老年
    </c:otherwise>
</c:choose>

执行结果:

到此这篇关于Java的JSTL标签库详解的文章就介绍到这了,更多相关JSTL标签库内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文