我是靠谱客的博主 美满小松鼠,最近开发中收集的这篇文章主要介绍标签处理器和自定义标签IF条件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

标签处理器:

import java.io.IOException;

import javax.servlet.jsp.JspException;

import javax.servlet.jsp.tagext.JspFragment;

import javax.servlet.jsp.tagext.SimpleTagSupport;

public class IfTag extends SimpleTagSupport {

private boolean test;

public void setTest(boolean test) {

this.test = test;

}

@Override

public void doTag() throws JspException, IOException {

if(test){

//处理标签体

JspFragment jf=this.getJspBody();

jf.invoke(null);

}

}

}

定义标签:if条件

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>

<%@ taglib uri="http://www.hbsi.edu.com" prefix="c"%>

<%

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 'TestIf.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">

</head>

  <body>

  <%

  session.setAttribute("user","zhangsan");

   %>

   <c:if test="${user!=null}">

    This is my JSP page. <br>

    </c:if>

  </body>

</html>

最后

以上就是美满小松鼠为你收集整理的标签处理器和自定义标签IF条件的全部内容,希望文章能够帮你解决标签处理器和自定义标签IF条件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部