Container Stop exception for Spring + Quartz + Tomcat web application

When stopping Tomcat, I get the following exception:

... seems to have started a thread with the name [ org.springframework.scheduling.quartz.SchedulerFactoryBean#0_Worker-10], but could not stop it. This will likely lead to a memory leak.

How can I prevent this? I already have it installed destroy-methodon destroya SchedulerFactoryBeanbean.

+3
source share
1 answer

Just say ...

We have the same error with Grails (based on Spring) and Quartz on the tomcat server ... A thread that cannot be stopped from the quartz pool We never managed to fix it.

0
source

All Articles