0

Say i have an Application deployed in tomcat. And i'm initializing a threadPool there,which i forgot to shutdown in my application. When i undeploy the application war or i restart the tomcat. will tomcat kill that threadPool? I mean will this cause any memory leaks?

Thanks

Jeevi
  • 129
  • 1
  • 1
  • 4

1 Answers1

0

If you shutdown the PID running that JVM instance and anything running under it should cease to exist. Best bet is to restart Tomcat.

Schrute
  • 797
  • 5
  • 14