If you want to modify the servlet,will the Webserver need
to be ShutDown ?
Answers were Sorted based on User's Feedback
Answer / farhaananwar
It depends on web server you use. most morden day web server
need not to shutdown and restart to accept the recompiled
servlet class.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / sanjay
No,there is no need to shutdown the webserver when we
recompile the code.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prashant
No it is not needed to shut down the web server while
modifying the servlet
But we need to Restart the web Server after modification!
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ravi shankar kuamr
Actualy this is totaly depent upon ur server whish server u
are using..nowadays if U talk about websphere application
server then there is a great facility given by IBM that U
can start ur server in Debug mode in which U can do all
modification in application( like servlets) at the same time
u are using services...
SO WE CAN SEE THAT IN CASE OF WEBSPHERE APPLICATION SERVER
IN DEBUG MODE DONT REQUARED TO SHUTDOWN WHEN ANY ONE WANT TO
MODIFY ANY SERVLETS..ITS TOTALY DEPENDS ON SERVER
| Is This Answer Correct ? | 0 Yes | 0 No |
No,Need to shutdown the Application server/webserver ,only recompile and reload of webapplication is enough after modification in servlet program.this will effected.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
When modification occurs change the attribute
reloadable=true in http connecter tag on server.xml
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / a.srnivas rao
no u dont need to shut down the server.Simply gp to web.xml
file and there u do the servletmodifications.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / sanjay gajula
YES WE NEED TO SHUT DOWN THE WEB SERVER TO SEE THE CHANGES
MODIFIED IN THE SERVLET IN THE CASE IF IT IS TOMCAT
APPLICATION SERVER WHERE AS IF IT IS WEB LOGIC SERVER NO
NEED TO SHUT DOWN IT ,JUST CHANGE CONTEXT TO "REDEPLOY" IN
THE SERVER.XML FILE OF WEB LOGIC SERVER
| Is This Answer Correct ? | 0 Yes | 3 No |
Explain the steps involved in placing a servlet within a package?
Explain the methods of request dispatcher in servlet?
Is it good idea to create servlet constructor?
Is that servlet is pure java object or not?
What happens, if server sends a cookie to a browser that doesn't supports cookies?
Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?
What are the different types of servlets?
What are the types of servlet?
What is use of parseQueryString?
How many ways to remove the session object in the container
hi.... i have problem in running of servlet. i am using Tomcat server in my pc.. The problem is when i am click on strat it will display like below FAIL - Application at context path /first could not be started.. How i can slove the problem.. help plz
How does tomcat servlet container work?