waht is the main diference b/w servelts and JSP ?
Answer Posted / vaibhav
The major difference is that JSP files are dynamically
compiled at the time of request whereas the servlets had to
be compiled before the server is started. Evrytime the file
is modified, it is to be compiled manually and the server
needs to be restarted. This does not happen in JSp where
files are automatically compiled at the time of request and
the server need not be restarted.
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
How to create war file?
What do you mean by interservlet communication?
What is api in servlet?
Why do we need servlet filter?
What is difference between ServletResponse sendRedirect() and RequestDispatcher forward() method?
What are the functions of Servlet container?
What is MIME Type?
What mechanisms are used by a Servlet Container to maintain session information?
Explain how to improve Servlet Performance?
What is servlet and its life cycle?
What are the drawbacks of cgi?
Describe some assignments that are executed by servlet container?
What is a generic servlet?
When a client request is sent to the servlet container, how does the container choose which servlet to invoke?
How do you define a servlet?