明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

JSP中的TagLib應(yīng)用(2)--zt

[摘要]JSP中的TagLib應(yīng)用(2)2、開始 現(xiàn)在讓我們逐步深入的了解xml在jsp中的應(yīng)用吧. 首先需要定義tld文件和相應(yīng)tag處理的java類文件.然后在jsp通過定義的語法使用tag, 讓我們來...
JSP中的TagLib應(yīng)用(2)


2、開始



現(xiàn)在讓我們逐步深入的了解xml在jsp中的應(yīng)用吧.

首先需要定義tld文件和相應(yīng)tag處理的java類文件.然后在jsp通過定義的語法使用tag,

讓我們來看看下面這個XML文件。

==================taglib.tld===========================



PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"

"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">







1.0

1.1



Java Pet Store Demo custom tags











insert

com.sun.estore.taglib.InsertTag

JSP



An insertion tag







id

false

true





template

true

true





parameter

true

true









CreateTemplate

com.sun.estore.taglib.CreateTemplateTag

JSP



Create a template object and store in the request with the specified name





id

false

true





template

true

true





screen

true

true









Screen

com.sun.estore.taglib.TemplateScreenTag

JSP



A template screen object





screen

true

true







Parameter

com.sun.estore.taglib.TemplateParameterTag

JSP



A template parameter object





parameter

true

true





value

true

true





direct

true

true

===========================================================
這是J2EE Blueprints 里提供的sample------Pet Store里面的一個TLD文件。

下面對TLD文件進行說明

TagLib Descriptor