what is the difference between Servlet and JSP?Advantage of
JSP over Servelt?Any concept present in JSP which we cant
implement in Servlet?
Answer Posted / sarfaraz sheikh
difference between Servlet and JSP::
Servlet::
1) It is a controller which is used into appllication to
collect inputs from end user and pass them to service layer.
2) It is service provider between presentation layer and
service layer.
3)It has less execution time as compare to JSP.
4)It is used to desighn static and dynamic pages for GUI.
5) Servlet doesent has implecit objects but there is an
option to make explicit objects.
6) We can be embeded html or plan text with servlet classes.
7)It suport to http and others protocol.
JSP::
1) 1) It is not controller which is used into appllication
only purpose of desighning GUI.
2) It is service provider between presentation layer and
service layer.
3)It has less execution time as compare to JSP.
4)It is used to desighn static and dynamic pages for GUI.
5) Servlet doesent has implecit objects but there is an
option to make explicit objects.
6) We can be embeded html or plan text with servlet classes.
JSP::
1) 1) It is not controller which is used into appllication
only purpose of desighning GUI.
2) It is service provider between presentation layer and
service layer.
3)It has less execution time as compare to JSP.
4)It is used to desighn static and dynamic pages for GUI.
5) Servlet doesent has implecit objects but there is an
option to make explicit objects.
6) We can be embeded html or plan text with servlet classes.
JSP::
1) 1) It is not controller which is used into appllication
only purpose of desighning GUI.
2) It is not service provider between presentation layer and
service layer but it is component of presentation layer.
3)It has more execution time as compare to servlet.
4)It is used to desighn only dynamic pages for GUI.
5) JSP has implecit objects to implements jsp code.
6) JSP allow to embeded java code into predifined jsp tages.
7) JSP only suport to http protocol.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a servlet to upload file on server.
What is a deployment descriptor?
What are the differences between the servletconfig interface and the servletcontext interface?
Explain the differences between jsp and servlet.
What is the purpose of dispatcherservlet properties?
How do we go with database connection and log4j integration in servlet?
Explain mvc pattern.
How does java thread pool work?
Explain the steps involved in placing a servlet within a package?
How would you create deadlock on your servlet?
How can we include static files in the jsp page?
How do I use cookies to store session state on the client?
What is the importance of init() method in Servlet ?
What is meant by a web application
What is preinitialization of a servlet?