zhongshu
zhongshu

Reputation: 7878

How to disable tomcat undeploy my application?

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

Answers (1)

UVM
UVM

Reputation: 9914

you can disable this by changing the value to false in server.xml file. autoDeploy="false"

Upvotes: 2

Related Questions