jsp自定义标签tld

本文介绍了一种在Spring环境中实现自定义JSP标签的方法,包括标签类的编写、配置文件(tags.tld)的创建及在JSP页面上的应用过程。通过示例详细展示了如何利用这些标签动态获取并展示数据库中的驾驶员信息。
摘要由CSDN通过智能技术生成

1.自定义标签类:(注:spring 环境,但由于类用于jsp中,IOC失效)

package org.bavtsp.sys.tag;

import java.io.IOException;

import javax.servlet.ServletContext;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;

import org.apache.log4j.Logger;
import org.dppc.bavtsp.sys.entity.Driver;
import org.dppc.bavtsp.sys.service.DriverService;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
/**
 * 
 ***************************************************************
 * @描述		:	驾驶员自定义标签类
 * @作者		:	gao
 * @版本		:	v1.0
 * @日期		:	2016-5-12          
 ****************************************************************
 */
public class DriverModel extends TagSupport {
	Logger logger = Logger.getLogger(DriverModel.class); 
	public Integer drId;   //外部传入的参数
	
	public int doEndTag() throws JspException {
	        JspWriter out = pageContext.getOut();
	        try {
	        	 DriverService adminService = getChannelService();
	        	 Driver driver = adminService.get(drId.toString());
	        	if(driver!=null&&driver.getName()!=null){
	        		out.print(driver.getName());
	        	}else{
	        		out.print("数据已不存在");
	        	}
	        } catch (IOException e) {
	        	logger.error("自定义标签获取驾驶员名字失败!");
	        }
	       return TagSupport.EVAL_PAGE;
	    }

	public void setDrId(Integer drId) {
		this.drId = drId;
	}

	public DriverService getChannelService() {
        ServletContext servletContext = pageContext.getServletContext();
        WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
        return wac.getBean(DriverService.class);       
    }
}


2.标签说明 文件tags.tld,可放于WEB-INF,一个文件可对多个标签类作说明

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "web-
jsptaglibrary_1_2.dtd" >
<taglib>
	  <tlib-version>1.0</tlib-version>
	  <jsp-version>2.1</jsp-version>
	  <short-name>show</short-name>  <pre name="code" class="html"><span style="white-space:pre">	</span>   <tag>
	    <name>driverName</name>
	    <tag-class>org.bavtsp.sys.tag.DriverModel</tag-class>
	    <body-content>empty</body-content>
	    <attribute>               
		    <name>drId</name>
		    <required>true</required>
		    <rtexprvalue>true</rtexprvalue><!-- 允许使用el表达式传值-->
	    </attribute>
	  </tag>
<tag> <name>vehicleName</name> <tag-class>org.bavtsp.sys.tag.VehicleModel</tag-class> <body-content>empty</body-content> <attribute> <name>veId</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag></taglib>

 

3.jsp页面引入自定义标签,前缀自己定义:

<%@ taglib prefix="show" uri="../../tags.tld" %>
4.jsp页面引用 

<show:driverName drId="${vehicle.driverID }"/> 




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值