|
Taglib are also termed as JSP tag extensions. They provide a way of encapsulating reusable functionality on JSP pages. One of the biggest drawbacks of scripting environments such as JSP is that it's easy to get carried away without thinking about how it will be maintained and grown in the future.
There are four files which play an important role:-
Main class file which encapsulates the logic
-
Tag library descriptor file
-
Web.xml file which has the tag library descriptor file location
-
Finally the JSP file which calls it.
|