Is there any need to shutdown the web server, if you want
to modify a servlet?
Answer Posted / tulasivani
Yes, its essential to shutdown the web server if we have
made any modification to the servlet.The servlet contains a
text file and a classfile, if a modification is made to the
text file it will not be reflected in the classfile which
is used.Thus, the previous file i.e. before modification
will be stored in the server and it will not reflect the
changes.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Difference between java beans & servlets?
Is servlet thread safe?
Explain servlet.
What are the important functions of filters?
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
What is the difference between a generic servlet and http servlet?
Why is http protocol called as a stateless protocol?
Which interface should be implemented by all servlets?
Difference between doget and dopost?
How is an application exception handling is done using a servlet?
When Servlet is unloaded?
What do you mean by request dispatcher in servlet? Also explain its methods.
Can we override servlet service method?
Define context initialization parameters.
What are the advantages of servlets over traditional cgi?