What is Difference between JavaBeans and taglib directives?
Answers were Sorted based on User's Feedback
Answer / nagababu
JavaBeans and taglib fundamendals were introduced for
reusability.But
Taglib are for generating presentation elements while
JavaBeans are good for storing information and state.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / debendra kumar dey
Both are reusable components. JavaBeans are used to
develope reusable components where as taglib directives are
used to prevent writting the business logic into the JSP
pages.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / qim2010
JSP Taglibs (taglib) are custom component tag template
libraries for Java. These tags Can manipulate JSP content.
Custom tags can simplify the complex operations much better
than the bean can. But require a bit more work to
set up. Used only in JSPs in a relatively self-contained manner.
JavaBeans are reusable software components for Java that can
be manipulated visually in a builder tool. Can’t manipulate
JSP content. Easier to set up. Can be used in both Servlets
and JSPs. You can define a bean in
one Servlet and use them in another Servlet or a JSP page.
| Is This Answer Correct ? | 2 Yes | 1 No |
What are different types of SessionTracking?
Explain the jar and war files in servlet?
Which protocol will be used by browser and servlet to communicate
What are the common methods that are included in the http servlet class?
Can we override the ActionServlet?
3 Answers ArisGlobal, HCL, PPF,
What is the structure of the http response
Why doesn’t a servlet include main()?
What is a servlet?
What is called servlet mapping?
Explain in detail about applet to servlet communication?
What is servlet container. how it works?
What is servlet and its types?