tld是一個簡單的能詳細提供jsp(SUN企業級應用的首選) tag 信息的xml(標准化越來越近了)文件;創建新的DemoTags.tld 保存在 /WEB-INF/tlds 文件中,代碼:
<?xml(標准化越來越近了) version="1.0" encoding="ISO-8859-1" ?><!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD jsp(SUN企業級應用的首選) Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsp(SUN企業級應用的首選)taglibrary_1_1.dtd"> <taglib> <tlibversion>1.0</tlibversion> <jsp(SUN企業級應用的首選)version>1.1</jsp(SUN企業級應用的首選)version><shortname>DemoTags</shortname><uri>http://www.stardeveloper.com</uri><info>Demo Tags Library</info><tag> <name>firsttag</name> <tagclass>com.stardeveloper.tag.test.FirstTag</tagclass><bodycontent>empty</bodycontent><info>Your first jsp(SUN企業級應用的首選) Tag</info> <attribute><name>name</name><required>false</required></attribute></tag> </taglib>
Tag Library Descriptor
注意:所有的內容都在<taglib> 和</taglib>之間,
<?xml(標准化越來越近了) version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD jsp(SUN企業級應用的首選) Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsp(SUN企業級應用的首選)taglibrary_1_1.dtd">
<taglib>
提供了你的tag library 的信息,在所有的tag中幾乎一樣的;
<tlibversion>1.0</tlibversion>告示當前的tag library 版本;
<jsp(SUN企業級應用的首選)version>1.1</jsp(SUN企業級應用的首選)version>指明jsp(SUN企業級應用的首選)版本;
<shortname>DemoTags</shortname>指明tag library 的名字;
<uri>http://www.stardeveloper.com</uri>:沒有多大的用處;
而<info>Demo Tags Library</info>是一個簡單的描述
現在我們看看<tag> 和</tag>的內容吧;<tag>
<name>firsttag</name>
<tagclass>com.stardeveloper.tag.test.FirstTag</tagclass>
<bodycontent>empty</bodycontent>
<info>Your first jsp(SUN企業級應用的首選) Tag</info>
<attribute>
<name>name</name>
<required>false</required>
</attribute>
</tag>
name是將用於jsp(SUN企業級應用的首選)的前綴之前的短名,如firsttag 在<star:firsttag />
tagclass將包含完整的jsp(SUN企業級應用的首選) tag class路徑
bodycontent應該包含下面的其中之一:tagdependent, jsp(SUN企業級應用的首選) and empty
attribute tag 描述每一個屬性,在本例中required被設置為false,因此這個tag能被用而不必輸入任何植.