JSP Custom Tag – Tag Library Descriptor (TLD) #17
In this JavaEE JSP Tutorial, we will define the TLD (Tag Library Descriptor) which will link the JSP & Custom Tag implementation class.
JSP Code Snippets support for: https://www.youtube.com/@CodingExamples
In this JavaEE JSP Tutorial, we will define the TLD (Tag Library Descriptor) which will link the JSP & Custom Tag implementation class.
In this JavaEE JSP Video, we will see how to use SimpleTagSupport class to override the doTag() method. The doTag will do the Job of HTML Tag rendering.
In this JavaEE JSP JSTL Tutorial, we will use JSTL to access the Java Bean object. Here, we create second version of displaybook.jsp file which eliminates the script-let syntax and uses JSTL Tags.
In this JavaEE JSP Tutorial, we will see how to create Foreach loop using the JavaEE JSTL core library.
In this JSP JSTL Tutorial, we will see how to use choose…when…otherwise tags to mimic the switch case statement.