when you comppile the servlet is it neccesary to restaet the
tomcat server?

Answers were Sorted based on User's Feedback



when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / prapanch

if you are deploying the application with a war file then
no need to restart the tomcat server, but you need to
redeploy it to create a new war file as one of your servlet
had changed.but if you are doing in another way like
creating a folder in web-apps copying all the classes to
classes folder like then you need to stop and again start
the tomcat.clear.

Is This Answer Correct ?    5 Yes 0 No

when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / srinivasan

It is not necessary. You can set the server.xml file there
you will find http connector tag there in it you have to set
the parameter reloadable=true. then it is not necessary to
restart the tomcat server. just by compiling it will give
the latest compiled class file on the console of tomcat.

Is This Answer Correct ?    5 Yes 1 No

when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / fasihuddin

Yes it is absolutely necessary to restart the Tomcat server.

Is This Answer Correct ?    4 Yes 2 No

when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / imambasha

i am sure that it's not necessary to restart the server..
we can select the "reload" option in the Tomcat/manager
window to reload all the components under a webroot...
but if u want or need to load entirly anew we application
into the server it's must..

Is This Answer Correct ?    1 Yes 0 No

when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / sachin

reloadable=true has some problem in tomcat5.x or later

Is This Answer Correct ?    0 Yes 1 No

when you comppile the servlet is it neccesary to restaet the tomcat server? ..

Answer / ravikiran.chd

yes

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Servlets Interview Questions

How many ways are available to ger RequestDispatcher object?

4 Answers   Polaris,


What if we pass negative value in load-on-startup?

0 Answers  


What are the various ways of session supervision in servlets?

0 Answers  


What is a parser. What does a parser do with a XML? Why do we need it?

1 Answers  


What is the use of attribute in servlets?

0 Answers  






Are Servlets Thread Safe? How to achieve thread safety in servlets?

0 Answers  


Can you use javascript in servlets?

0 Answers  


What is the difference between Server and Container?

0 Answers  


What is Single Threaded Model in Servlets? Explain this with an example?

10 Answers   Wipro,


what is the difference between?when we write the code in following manner? class One extends httpservlet { } and class One extends genericservlet { }

4 Answers  


How will you open a new page after certain interval of time (5 sec), on clicking of a button in an html page?

2 Answers  


What is the difference between context parameter and context attribute?

0 Answers  


Categories