自定义标签

自定义标签的开发步骤

1.编写标签处理器
1).传统标签开发。需要实现javax.servlet.jsp.tagext.Tag接口
2).简单标签开发。需要实现javax.servlet.jsp.tagext.SimpleTag接口

2..编写一个类,实现javax.servlet.jsp.tagext.SimpleTag,或者继承

3.编写标签库描述符文件
在WEB-INF目录下建立一个扩展名为tld的xml文件。


    1.0
    hhh
    http://www.xxx.com/jsp/tags
    
        showRemoteIp
        com.xxx.ShowRemoteIpSimpleTag
        
        empty
    



empty指定标签体的类型
1).empty:不能设置标签体
2).JSP:标签体可以为任意的JSP元素
3).scriptless:标签体可以包含除了JSP脚本元素之外的任意JSP元素
4).tagdependent :标签体内容不进行处理

4.在jsp页面导入和使用自定义标签

简单标签

1.定义标签类
public class Demo1SimpleTag extends SimpleTagSupport {
    //主体内容不需要显示,就什么都不写
    public void doTag() throws JspException, IOException {
    }
}
2.配置tld


    1.0
    hhh
    http://www.xxx.com/jsp/tags
    
        xihuan
        com.xxx.tag.ShowRemoteIpSimpleTag
        
        scriptless
    
3.jsp
 
    我喜欢
     某某//此处某某不显示
  
-----------------------------------------------------------
1.显示主题
    public void doTag() throws JspException, IOException {
//      JspFragment jf = getJspBody();//代表标签的主体内容
//      PageContext pc = (PageContext)getJspContext();
//      JspWriter out = pc.getOut();
//      jf.invoke(out);
        
        getJspBody().invoke(null);//如果是空默认为JspWriter

2.标签后的内容不显示
        
        empty
public void doTag() throws JspException, IOException {
        throw new SkipPageException();
    }

3.重复输出
private int count;//自动转换
    public void setCount(int count) {
        this.count = count;
    }
public void doTag() throws JspException, IOException {
        for(int i=0;i
            count
            true
            
            true


  
    <% int i = 3; %>
    
        某某
    
  

4.大小写的转换

    public void doTag() throws JspException, IOException {
        StringWriter sw = new StringWriter();
        //得到主体内容
        JspFragment jf =getJspBody();
        jf.invoke(sw);
        //变为大写后输出
        String content = sw.toString();
        content = content.toUpperCase();
        
        PageContext pc = (PageContext)getJspContext();
        pc.getOut().write(content);
    }

        showRemoteIp
        com.xxx.tag.ShowRemoteIpSimpleTag
        
        empty


public class ShowRemoteIpSimpleTag extends SimpleTagSupport {
    public ShowRemoteIpSimpleTag(){
        System.out.println("实例化了");
    }
    public void doTag() throws JspException, IOException {
        PageContext pc = (PageContext)getJspContext();
        String ip = pc.getRequest().getRemoteAddr();
        pc.getOut().write(ip);
    }   
}


    您的IP是:
     

你可能感兴趣的:(自定义标签)