Is there any need to shutdown the web server, if you want
to modify a servlet?
Answers were Sorted based on User's Feedback
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 |
Answer / harsh
yes to make changes reflected in a class file we need to
shutdown the web server
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / devendra
yes, it is essential to shutdown the web server if we have
made any modifications. but we have another alternative way
without if u r using tomcat then it has server.conf server
configuration file just go to that and set the property
something like <Defalutcontext reloaded="true"> just make
it true so that thr is no need to shoutdown server. it will
take changes automatically..
| Is This Answer Correct ? | 0 Yes | 0 No |
What is filter? Can filter be used as request or response?
How we can call a jsp from the servlet?
Which event is fired at the time of session creation and destroy?
Is classes folder is compulsory in web-inf/ even though u r deploying ur application with war file?
Is servlet a server side scripting language?
Which http method is said to be non-idempotent and idempotent?
How two servlets communicate with each other?
What is servlet in tomcat?
What is the difference between an applet and a servlet?
15 Answers GCEW, Miracle Solutions,
What is difference between server and servlet?
Explain the features are in servlet 3?
What is a servlet context object?