三个标签案例:帮你深入学习JSP自定义标签

标签: 标签 学习 jsp | 发表时间:2013-10-02 06:54 | 作者:wangyang1354
出处:http://blog.csdn.net
/*
案例一:开发一个if标签

日期:20130930

作者:烟大阳仔

*/
1.编写一个实现tag接口的JAVA类
public class IFTagLib extends SimpleTagSupport 
{
	private boolean test;

	public void setTest(boolean test) {
		this.test = test;
	}

	@Override
	public void doTag() throws JspException, IOException {
		if(test)
		{
			this.getJspBody().invoke(null);
		}
	}
	
}
	
2.在tld文件中对标签处理器进行描述(tld文件的位置WEB-INF里面)
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    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"
    version="2.0">
    <description>A tag library exercising SimpleTag handlers.</description>
    <tlib-version>1.0</tlib-version>
    <short-name>IFTagLib</short-name>
    <uri>/IFTagLib</uri>
    <tag>
        <name>if</name>
        <tag-class>cn.com.web.ifTag.IFTagLib</tag-class>
        <body-content>scriptless</body-content>
        <attribute>
        	<name>test</name>
        	<required>true</required>
        	<rtexprvalue>true</rtexprvalue>
        </attribute>
    </tag>
</taglib>
3.在jsp页面中使用标签
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="/IFTagLib" prefix="IFTagLib" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'IfDemo.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
  	<%
  		session.setAttribute("user", "as");
  	%>
    <IFTagLib:if test="${user==null}">
    	Hello world!
    </IFTagLib:if>
    <IFTagLib:if test="${user!=null}">
    	一点不好啊!
    </IFTagLib:if>
    
  </body>
</html>


----------------------------------------------------------------------------------------------------------

/*
案例二:开发一个嵌套的标签
	<IFElse:choose>
    		<IFElse:when test="${user==null}">
    			大家好!
    		</IFElse:when>
    		<IFElse:otherwise>
    			我是阳仔!
    		</IFElse:otherwise>
    	</IFElse:choose>
日期:20130930

作者:烟大阳仔

*/
1.编写三个实现tag接口的JAVA类
public class IfElseTagLib extends SimpleTagSupport {
	
	private boolean isDo;

	public boolean isDo() {
		return isDo;
	}

	public void setDo(boolean isDo) {
		this.isDo = isDo;
	}

	@Override
	public void doTag() throws JspException, IOException {
		this.getJspBody().invoke(null);
	}
	
}
public class WhenTag extends SimpleTagSupport 
{
	private boolean test;

	
	public void setTest(boolean test) {
		this.test = test;
	}


	@Override
	public void doTag() throws JspException, IOException {
		IfElseTagLib parent=(IfElseTagLib) this.getParent();
		if(test&& !parent.isDo())
		{
			this.getJspBody().invoke(null);
			parent.setDo(true);
		}
		
	}
	
}
public class otherTag extends SimpleTagSupport {

	@Override
	public void doTag() throws JspException, IOException {
		
		IfElseTagLib parent =(IfElseTagLib) this.getParent();
		if(!parent.isDo())
		{
			this.getJspBody().invoke(null);
			parent.setDo(true);
		}
	}
	
	
}
	
2.在tld文件中对标签处理器进行描述(tld文件的位置WEB-INF里面)
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    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"
    version="2.0">
    <description>A tag library exercising SimpleTag handlers.</description>
    <tlib-version>1.0</tlib-version>
    <short-name>IFElse</short-name>
    <uri>/IFElse</uri>
    <tag>
        <name>choose</name>
        <tag-class>cn.com.web.ifTag.IfElseTagLib</tag-class>
        <body-content>scriptless</body-content>
    </tag>
    <tag>
        <name>when</name>
        <tag-class>cn.com.web.ifTag.WhenTag</tag-class>
        <body-content>scriptless</body-content>
        <attribute>
        	<name>test</name>
        	<required>true</required>
        	<rtexprvalue>true</rtexprvalue>
        </attribute>
    </tag>
    <tag>
        <name>otherwise</name>
        <tag-class>cn.com.web.ifTag.otherTag</tag-class>
        <body-content>scriptless</body-content>
    </tag>
</taglib>
3.在jsp页面中使用标签
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="/IFElse" prefix="IFElse" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'IfElse.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
 	 	<%
  			session.setAttribute("user", "as");
  		%> 
    	<IFElse:choose>
    		<IFElse:when test="${user==null}">
    			大家好!
    		</IFElse:when>
    		<IFElse:otherwise>
    			我是阳仔!
    		</IFElse:otherwise>
    	</IFElse:choose>
  </body>
</html>


----------------------------------------------------------------------------------------------------------

/*
案例三:开发一个防盗链标签

日期:20130930

作者:烟大阳仔

*/
1.编写一个实现tag接口的JAVA类
public class RefererTagLib extends SimpleTagSupport {
	private String site;
	private String page;
	public void setSite(String site) {
		this.site = site;
	}
	public void setPage(String page) {
		this.page = page;
	}
	@Override
	public void doTag() throws JspException, IOException {
		
		PageContext pageContext=(PageContext) this.getJspContext();
		HttpServletRequest request=(HttpServletRequest) pageContext.getRequest();
		HttpServletResponse response=(HttpServletResponse) pageContext.getResponse();
		//得到未访问者referer
		String referer=request.getHeader("referer");
		if(referer==null||!referer.startsWith(site))
		{
			if(page.startsWith(request.getContextPath()))
			{
				response.sendRedirect(page);
				return ;
			}
			else if(page.startsWith("/"))
			{
				response.sendRedirect(request.getContextPath()+page);
			}
			else
			{
				response.sendRedirect(request.getContextPath()+"/"+page);
			}
			throw new SkipPageException();
			//response.sendRedirect(request.getContextPath()+"/index.jsp");
		}
	}
	
}

	
2.在tld文件中对标签处理器进行描述(tld文件的位置WEB-INF里面)
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    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"
    version="2.0">
    <description>A tag library exercising SimpleTag handlers.</description>
    <tlib-version>1.0</tlib-version>
    <short-name>RefererTagLib</short-name>
    <uri>/RefererTagLib</uri>
    <tag>
        <name>referer</name>
        <tag-class>cn.com.web.Referer.RefererTagLib</tag-class>
        <body-content>empty</body-content>
        <attribute>
        	<name>site</name>
        	<required>true</required>
        	<rtexprvalue>true</rtexprvalue>
        </attribute>
        <attribute>
        	<name>page</name>
        	<required>true</required>
        	<rtexprvalue>true</rtexprvalue>
        </attribute>
    </tag>
</taglib>
3.在jsp页面中使用标签
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="/RefererTagLib" prefix="RefererTagLib" %>
<RefererTagLib:referer site="http://localhost" page="index.jsp"/>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>Referer</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    This is my JSP page. <br>
  </body>
</html>
---------------------------------------------------------------------------------------------------------------





作者:wangyang1354 发表于2013-10-1 22:54:40 原文链接
阅读:116 评论:0 查看评论

相关 [标签 学习 jsp] 推荐:

三个标签案例:帮你深入学习JSP自定义标签

- - CSDN博客Web前端推荐文章
/* 案例一:开发一个if标签 日期:20130930 作者:烟大阳仔 */ 1.编写一个实现tag接口的JAVA类 public class IFTagLib extends SimpleTagSupport {. 2.在tld文件中对标签处理器进行描述(tld文件的位置WEB-INF里面)

【JSP】JSTL核心标签库的使用方法和示例

- - CSDN博客Web前端推荐文章
 JSTL 核心标签库标签共有13个,功能上分为4类:. 表达式控制标签:out、set、remove、catch. 流程控制标签:if、choose、when、otherwise. 循环标签:forEach、forTokens. URL操作标签:import、url、redirect. 使用标签时,一定要在jsp文件头加入以下代码:.

JSP自定义方法库

- - CSDN博客编程语言推荐文章
如果JSTL的方法库没有满足需要,可以使用自定义方法进行扩展. public static int length(Object obj){ //返回对象的长度. 自定义方法的声明写在 标记里面,格式为.       返回值 方法名(参数1类型,参数2类型……).

jsp+servlet实现验证码功能

- - CSDN博客推荐文章
验证码的功能大多数人可能不都理解,但几乎每个安全网站都会有. 验证码是用来防止非人为因素操作的行为,例如一个黑客要黑一个网站,怎么弄呢. 最简单的思路当然是造成其网路拥堵直至系统瘫痪掉. 如果没有验证码,那么我就可以在注册页面,写一个程序,只有注册表单,不断更换主键或不可重复的内容,不停的提交. 那这样每秒可以注册几万次都有可能,这样服务器就大量负载,很容易就瘫痪并死掉.

jsp静态化之简单介绍

- - CSDN博客Web前端推荐文章
StringBuffer htmlCode = new StringBuffer(); //这里我做了改动,原文是用String,这样内存消耗会太大,原因我就不说了. HttpURLConnection connection = (HttpURLConnection) url.openConnection(); //抽象连接.

JSP端口转发神器:KPortTran

- - Hacking is endless! Focus on network security!
back.jsp?lip=本地ip&lp=本地端口&rip=远程ip&rp=远程端口&lp2=本地端口2//本地监听转发到第二个端口&m=运行模式//合法的值有:listen tran slave三种. 该模式下,会在本地监听两个端口,相互转发数据. 需要参数:lip、lp、rip、rp. 该模式为正向转发下,会在本地的lip上监听lp端口,当有连接建立时,再连接rip的rp端口.

JSP, C 写入文件添加BOM头实例

- - CSDN博客推荐文章
注: 以下的状况不加BOM头也不会有中文乱码问题, 只是演示一下JSP输出文件如何加BOM头. out.write()是字节输出流的方法. out.print()是字符输出流的方法. 作者:oscar999 发表于2012-1-10 10:41:44 原文链接. 阅读:3 评论:0 查看评论.

测试Jsp 静态包含和动态包含

- - CSDN博客Web前端推荐文章
静态包含是在请求包含页面时去编译包含页面,编译时遇到静态页面包含伪码将被包含页面的内容复制到被包含页面中进行编译. 动态包含是指在请求包含页面的时候遇到动态包含指令将请求转到被包含页面,这时去编译被包含页面. 但两者生成的class文件缺不同:. 通过以上说明可知,动态包含在请求到来时编译包含页面和被包含页面,如果都是jsp页面,那么将生成两个个页面对应的class文件和java文件.

使用FreeMarker替换JSP的10个理由

- - ImportNew
你还在使用 Java 服务器页面(俗称JSP)吗. 我曾经也是,但是几年前我抛弃了它们,并且再也没有用过JSP了. JSP 是个很好的概念,但是它却剥夺了 web 开发的乐趣. 对我而言,这些都是小事,比如无法在页面模板上使用单独的文件header.jsp 和 footer.jsp,不能调用表达式语言的方法,在运行时无法合并,重新排列页面的各个部分.

几种典型 JSP WebShell 的深度解析

- - FreeBuf.COM | 关注黑客与极客
对于一条威胁情报信息,我们需要分析该攻击的指纹信息、相关攻击工具、属于哪个组织、相关历史事件、历史相关攻击源IP等信息. 通过这些信息进行关联分析,找到攻击来源. 并根据攻击组织或个人的攻击偏好,做出相应的安全防护及进一步追踪溯源. 本文分析 Jsp WebShell 样本是通用型的,不需关注制作者是谁.