Jstl

Good Links

Difference between a TLD and Tag file

The answer from Christophe Verre, a bartender of Javaranch :

A TLD (Tag Library Descriptor) is a file which allows you to assemble some custom tags in one library, identified by a uri. Custom tags can be either .class files compiled from Java sources (Classic and Simple tags), or Tag Files, whose extension is .tag or .tagx. For Classic and Simple tags, you need to use a TLD to declare them, to be able to use them in your JSPs. On the contrary, Tag Files do not need a TLD (unless packages in a JAR file), because the container will detect them automatically.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.