What is the difference between Custom Tag Libraries and Core Tag Libraries in JSP?
What is the difference between Custom Tag Libraries and Core Tag Libraries in JSP?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Custom tag libraries are homegrown tag libraries. Core tag libraries are part of JSTL (JSP Standard Tag Library). You can find an overview of them all in the JSTL taglib documentation. It’s the JSTL core one. It just offers a set of tags which are likely to be very commonly used to control the flow/output of a JSP page. Here’s an extract of relevance:
See also:
Note that Java EE 6 tutorial doesn’t mention about them anywhere as JSP is considered to be “legacy”. It’s not officially deprecated though, the focus is just more put on Facelets, the successor of JSP, and the MVC framework JSF.