Difference between Custom Tag and Java Bean?
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.
A custom JSP tag has to be interpreted and run inside a JSP; a Java Bean does not.
A custom JSP tag has to extend the javax.servlet.jsp.tagext.Tag interface; a Java Bean does not.
A custom JSP tag might use other Java Beans to do its work, but the reverse is not true.