when you comppile the servlet is it neccesary to restaet the
tomcat server?
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / fasihuddin
Yes it is absolutely necessary to restart the Tomcat server.
| Is This Answer Correct ? | 4 Yes | 2 No |
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 |
Answer / sachin
reloadable=true has some problem in tomcat5.x or later
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain the methods of request dispatcher in servlet?
i have 500 jsp in my application ,with same forward name,it lokks for appropritae jsp from 1 to 500,but i want to send response to 498 page,what should i do
How will two or three servlets interact or communicate with each other?
Is servlet a controller?
Whether thread can be used in servlets?
How do you run a servlet?
How can the session in servlet can be destroyed?
What is a servlet engine?
Can a servlet be called by passing its name as a parameter in the URL?
without session Id can we do any operations like add,update,edit,delete. I saw Session id is loaded for edit and delete action not for add .so am asking this
Can we fetch the attributes related to a servlet on a different servlet?
which type of data passing is used in realtime?