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
What are the types of Session Tracking ?
What is the GenericServlet class?
What is the use of welcome-file-list?
Given the request path below, which are context path, servlet path and path info?
Explain the custom jsp tags and the beans.
Is servlet a framework?
If servlet receives multiple requests, how many objects will it create?
How to get the current httpsession object?
What is servletconfig?
How can we perform any action at the time of deploying the project?
What is meant by session? Tell me something about httpsession class?
What is getservletcontext?
How to get the server information in a servlet?
What is the difference between sendredirect() and forward() in a servlet?
Explain web container.