Home Jsf Netbeans Create Tag Library Descriptor (TLD) File



Create Tag Library Descriptor (TLD) File
Posted on: December 7, 2008 at 12:00 AM
In this example, we learn how to create library descriptor file in your project.

Create Tag Library Descriptor (TLD) File

        

In this example, we learn how to create library descriptor file in your project. Developers can group together tags of similar or related functionality. For this, a tag library descriptor file (TLD file) is used to describe the tag extensions and relate them to their java classes. TLD files are written in XML notation. Follow these steps to create the file:

 

1. Go to project option and right click on your project and select new -> Other in the project window, as shown in figure.

 

2. Select Web under Categories, and select Tag Library Descriptor under File Types, as shown in figure. Click Next.

 

3. New Tag Library Descriptor dialog appears next. Enter TLD Name as image, as shown in Figure and click Finish.

 

4. Now, image.tld file is added in the project window under WEB-INF / tlds. The source code given below:

 


image.tld

<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd">
  <tlib-version>1.0</tlib-version>
  <short-name>image</short-name>
  <uri>/WEB-INF/tlds/image</uri>
  <!-- A validator verifies that the tags are used correctly at JSP
 translation time. Validator entries look like this
  <validator>
  <validator-class>com.mycompany.TagLibValidator</validator-class>
  <init-param>
 <param-name>parameter</param-name>
 <param-value>value</param-value>
  </init-param>
  </validator>
 -->
  <!-- A tag library can register Servlet Context event listeners in
  case it needs to react to such events. Listener entries look
  like this
 <listener>
 <listener-class>com.mycompany.TagLibListener</listener-class
 </listener>
 -->
</taglib>


Source Code of image.tld

Related Tags for Create Tag Library Descriptor (TLD) File:
javaclibraryfileclassfunctionscriptfuniotagsclassessedgetextensionipextensionstagthisfunctionaldevelopercreategroupforexampleunctolearnexamdeveloperssseldearexteilitdeslibcanliusepeimdevinrarasdescriptormtldcajclesemfunchowprodescribetorrelsimilarxaxampsatlateisirmpldevelopeafunctionalityandarrelatesimxtvascrssriripthavjepleplprojprmindono


More Tutorials from this section

Ask Questions?    Discuss: Create Tag Library Descriptor (TLD) File   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.