What is Difference between JavaBeans and taglib directives?
Answer Posted / 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 |
Post New Answer View All Answers
What is servlet and its types?
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
Write a command to get actual path of a servlet to the server?
Explain session tracking and its importance?
Explain in brief the directory structure of a web application?
Hi frnd can i any one kindly can post for me portlet,hibernate and spring example application and with flow explantion configuration using Jdeveloper.and related links ar tutorials kindly please send me .its urgent for me .thanks in advance...........else can any one send to kondaiah.goddeti@gmail.com
What is load-on-startup in servlet?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
What are common tasks performed by Servlet Container?
What are the phases of a servlet life cycle?
How do you get the ip address of the client in servlet?
Is dispatcher servlet a singleton?
I have a requirement Here we have a ResultSet object that will contain 50 records i need to print those recors in to a webpage(i.e; view according to MVC architectures that mybe servlet or jsp) . Here i need to print the records 10 per page that is 1 to 10 in page one and 11 to 20 in page two like remaining will be appeared in other pages we need to display those page numbers whenever we click on that page number we will go to that page and display 10 records like we will display 5 pages it is like this << 1 2 3 4 5 next >>
What is called servlet mapping?
What is lazy loading and what is Generic Servlet Class?