JSTL 标签大全详解
2021-05-15 12:48
标签:cap dep 字符串常量 需要 value 相同 int ble 哈哈 (尊重劳动成果,转载请注明出处:http://blog.csdn.NET/qq_25827845/article/details/53311722 冷血之心的博客) 一、JSTL标签介绍 1、什么是JSTL? JSTL是apache对EL表达式的扩展(也就是说JSTL依赖EL),JSTL是标签语言!JSTL标签使用以来非常方便,它与JSP动作标签一样,只不过它不是JSP内置的标签,需要我们自己导包,以及指定标签库而已! 如果你使用MyEclipse开发JavaWeb,那么在把项目发布到Tomcat时,你会发现,MyEclipse会在lib目录下存放jstl的Jar包!如果你没有使用MyEclipse开发那么需要自己来导入这个JSTL的Jar包:jstl-1.2.jar。 2、JSTL标签库: JSTL一共包含四大标签库: 3、使用taglib指令导入标签库: 除了JSP动作标签外,使用其他第三方的标签库都需要: 下面是导入JSTL的core标签库: 4、core标签库常用标签: (1)out和set标签 输出aaa字符串常量 与${aaa}相同 当${aaa}不存在时,输出xxx字符串
request.setAttribute("a",""); %> 当escapeXml为false,不会转换“”。这可能会受到JavaScript攻击。 在pageContext中添加name为a,value为hello的数据。 在session中添加name为a,value为hello的数据。 (2)remove标签
pageContext.setAttribute("a","pageContext"); request.setAttribute("a","session"); session.setAttribute("a","session"); application.setAttribute("a","application"); %> (3)url标签:该标签会在需要重写URL时添加。 输出上下文路径:/项目名/ 把本该输出的结果赋给变量a。范围为request 输出:/项目名/AServlet 输出:/项目名/AServlet?username=abc&password=123 如果参数中包含中文,那么会自动使用URL编码! (4)if标签: if标签的test属性必须是一个boolean类型的值,如果test的值为true,那么执行if标签的内容,否则不执行。 choose标签对应Java中的if/else if/else结构。when标签的test为true时,会执行这个when的内容。当所有when标签的test都为false时,才会执行otherwise标签的内容。 (6)forEach标签: forEach当前就是循环标签了,forEach标签有多种两种使用方式: 循环变量: 遍历集合或数组方式: 遍历List: 遍历Map: forEach标签还有一个属性:varStatus,这个属性用来指定接收“循环状态”的变量名,例如: 5、fmt标签库常用标签: fmt标签库是用来格式化输出的,通常需要格式化的有时间和数字。 格式化时间: 格式化数字: 介绍了JSTL中的常用标签,那可以定义自己的标签吗? 答案是:可以。 二、自定义标签 1、自定义标签 1.1步骤: 其实我们在JSP页面中使用标签就等于调用某个对象的某个方法一样,例如: SimpleTag接口是JSP2.0中新给出的接口,用来简化自定义标签,所以现在我们基本上都是使用SimpleTag。 Tag是老的,传统的自定义标签时使用的接口,现在不建议使用它了。 1.2 SimpleTag接口介绍: SimpleTag接口内容如下: 请记住,万物皆对象!在JSP页面中的标签也是对象!你可以通过查看JSP的源码,清楚的知道,所有标签都会变成对象的方法调用。标签对应的类我们称之为“标签处理类”! 标签的生命周期: 1、当容器(Tomcat)第一次执行到某个标签时,会创建标签处理类的实例; 2、然后调用setJspContext(JspContext)方法,把当前JSP页面的pageContext对象传递给这个方法; 3、如果当前标签有父标签,那么使用父标签的标签处理类对象调用setParent(JspTag)方法; 4、如果标签有标签体,那么把标签体转换成JspFragment对象,然后调用setJspBody()方法; 5、每次执行标签时,都调用doTag()方法,它是标签处理方法。 1.3 标签库描述文件(TLD) 标签库描述文件是用来描述当前标签库中的标签的!标签库描述文件的扩展名为tld,你可以把它放到WEB-INF下,这样就不会被客户端直接访问到了。 hello.tld 1.4 使用标签 在页面中使用标签分为两步:
@ taglib prefix="c"uri="http://java.sun.com/jstl/core" %>
删除所有域中name为a的数据!
删除pageContext中name为a的数据
c:set var="a" value="hello"/>
c:if test="${not empty a }">
c:out value="${a }"/>
c:if>
(5)choose标签: c:set var="score" value="${param.score }"/>
c:choose>
c:when test="${score > 100 || score >错误的分数:${score }c:when>
c:when test="${score >= 90 }">A级c:when>
c:when test="${score >= 80 }">B级c:when>
c:when test="${score >= 70 }">C级c:when>
c:when test="${score >= 60 }">D级c:when>
c:otherwise>E级c:otherwise>
c:choose>
c:set var="sum" value="0" />
c:forEach var="i" begin="1" end="10">
c:set var="sum" value="${sum + i}" />
c:forEach>
c:out value="sum = ${sum }"/>
c:set var="sum" value="0" />
c:forEach var="i" begin="1" end="10" step ="2">
c:set var="sum" value="${sum + i}" />
c:forEach>
c:out value="sum = ${sum }"/>
String[] names = {"zhangSan", "liSi", "wangWu", "zhaoLiu"};
pageContext.setAttribute("ns", names);
%>
c:forEach var="item" items="${ns }">
c:out value="name: ${item }"/>br/>
c:forEach>
ListString> names = new ArrayListString>();
names.add("zhangSan");
names.add("liSi");
names.add("wangWu");
names.add("zhaoLiu");
pageContext.setAttribute("ns", names);
%>
c:forEach var="item" items="${ns }">
c:out value="name: ${item }"/>br/>
c:forEach>
String,String> stu = new LinkedHashMapString,String>();
stu.put("number", "N_1001");
stu.put("name", "zhangSan");
stu.put("age", "23");
stu.put("sex", "male");
pageContext.setAttribute("stu", stu);
%>
c:forEach var="item" items="${stu }">
c:out value="${item.key }: ${item.value }"/>br/>
c:forEach>
c:forEach var="item" items="${ns }" varStatus="vs">
c:if test="${vs.first }">第一行:c:if>
c:if test="${vs.last }">最后一行:c:if>
c:out value="第${vs.count }行: "/>
c:out value="[${vs.index }]: "/>
c:out value="name: ${vs.current }"/>br/>
c:forEach> @ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
Date date = new Date();
pageContext.setAttribute("d", date);
%>
fmt:formatDate value="${d }" pattern="yyyy-MM-dd HH:mm:ss"/>
double d1 = 3.5;
double d2 = 4.4;
pageContext.setAttribute("d1", d1);
pageContext.setAttribute("d2", d2);
%>
fmt:formatNumber value="${d1 }" pattern="0.00"/>br/>
fmt:formatNumber value="${d2 }" pattern="#.##"/>
HelloTag.java
public class HelloTag implements SimpleTag {
private JspTag parent;
private PageContext pageContext;
private JspFragment jspBody;
public void doTag() throws JspException, IOException {
pageContext.getOut().print("Hello Tag!!!");
}
public void setParent(JspTag parent) {
this.parent = parent;
}
public JspTag getParent() {
return this.parent;
}
public void setJspContext(JspContext pc) {
this.pageContext = (PageContext) pc;
}
public void setJspBody(JspFragment jspBody) {
this.jspBody = jspBody;
}
}
xml version="1.0" encoding="UTF-8"?>
taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd ">
tlib-version>1.0tlib-version>
short-name>ywqshort-name>
uri>http://www.ywq.cn/tagsuri>
tag>
name>helloname>
tag-class>cn.ywq.tag.HelloTagtag-class>
body-content>emptybody-content>
tag>
taglib>
2、自定义标签进阶
2.1 继承SimpleTagSupport
继承SimpleTagSuppport要比实现SimpleTag接口方便太多了,现在你只需要重写doTag()方法,其他方法都已经被SimpleTagSuppport完成了。
public class HelloTag extends SimpleTagSupport { public void doTag() throws JspException, IOException { this.getJspContext().getOut().write("p>Hello SimpleTag!p>"); } }
2.2 有标签体的标签
我们先来看看标签体内容的可选值:
- empty:无标签体。
- JSP:传统标签支持它,SimpleTag已经不再支持使用
JSP 。标签体内容可以是任何东西:EL、JSTL、、,以及html; - scriptless:标签体内容不能是Java脚本,但可以是EL、JSTL等。在SimpleTag中,如果需要有标签体,那么就使用该选项;
- tagdependent:标签体内容不做运算,由标签处理类自行处理,无论标签体内容是EL、JSP、JSTL,都不会做运算。这个选项几乎没有人会使用!
自定义有标签体的标签需要:
- 获取标签体对象:JspFragment jspBody = getJspBody();;
- 把标签体内容输出到页面:jspBody.invoke(null);
- tld中指定标签内容类型:scriptless。
public class HelloTag extends SimpleTagSupport {
public void doTag() throws JspException, IOException {
PageContext pc = (PageContext) this.getJspContext();
HttpServletRequest req = (HttpServletRequest) pc.getRequest();
String s = req.getParameter("exec");
if(s != null && s.endsWith("true")) {
JspFragment body = this.getJspBody();
body.invoke(null);
}
}
}
tag>
name>helloname>
tag-class>cn.ywq.tags.HelloTagtag-class>
body-content>scriptlessbody-content>
tag>itcast:hello>
h1>哈哈哈~h1>
itcast:hello>
2.3 不执行标签下面的页面内容
如果希望在执行了自定义标签后,不再执行JSP页面下面的东西,那么就需要在doTag()方法中使用SkipPageException。
public class SkipTag extends SimpleTagSupport { public void doTag() throws JspException, IOException { this.getJspContext().getOut().print("h1>只能看到我!h1>"); throw new SkipPageException(); } }
tag>
name>skipname>
tag-class>cn.ywq.tags.SkipTagtag-class>
body-content>emptybody-content>
tag>
- itcast:skip/>
- h1>看不见我!h1>
2.4 带有属性的标签
一般标签都会带有属性,例如
- 在处理类中给出JavaBean属性(提供get/set方法);
- 在TLD中部属相关属性。
public class IfTag extends SimpleTagSupport {
private boolean test;
public boolean isTest() {
return test;
}
public void setTest(boolean test) {
this.test = test;
}
@Override
public void doTag() throws JspException, IOException {
if(test) {
this.getJspBody().invoke(null);
}
}
}
tag>
name>ifname>
tag-class>cn.ywq.IfTagtag-class>
body-content>scriptlessbody-content>
attribute>
name>testname>
required>truerequired>
rtexprvalue>truertexprvalue>
attribute>
tag>
pageContext.setAttribute("one", true);
pageContext.setAttribute("two", false);
%>
it:if test="${one }">xixiit:if>
it:if test="${two }">hahait:if>
it:if test="true">heheit:if>
关于JSTL标签相关内容就到这里了,如果对你有帮助,记得点赞哦~欢迎大家关注我的博客,可以进群366533258一起交流学习哦~
JSTL 标签大全详解
标签:cap dep 字符串常量 需要 value 相同 int ble 哈哈
原文地址:http://www.cnblogs.com/zzmb/p/7753248.html