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
Is servlet thread safe?
What is the life-cycle of servlets?
Explain the difference between get and post method in servlet?
How can you run a servlet program?
What are the types of protocols supported by httpservlet ?
How can you push data from an Applet to a Servlet?
How can I send user authentication information while making URL Connection?
What is a servlet context object?
How we can create war file in servlet?
Write a program to show the functionality of servlets.
Explain how does JSP handle run-time exceptions?
What is the importance of init() method in Servlet ?
List the Different types of servlet?
What if you need to span your transaction across multiple servlet invocations?
What are the steps involved in placing a servlet within a package?