Reputation: 7878
When I modify the web.xml for my tomcat6 application, the console print: "Undeploying context []"
and seems tomcat reloading my app.
I don't want this "hot reloading", how to disable this behavior?
Upvotes: 0
Views: 2280
Reputation: 9914
you can disable this by changing the value to false in server.xml file. autoDeploy="false"
Upvotes: 2