JBoss 上的 Spring 计时器在取消部署时不会停止
我使用 spring Quartz SchedulerFactoryBean 每 10 秒运行一个任务 (SimpleTriggerBean)。它工作得很好,除了当我取消部署应用程序时,计时器继续运行。停止它的唯一方法是重新启动服务器!是否有一些 JBoss 或 Spring 配置会在应用程序取消部署时停止计时器?
I'm using the spring Quartz SchedulerFactoryBean to run a task (SimpleTriggerBean) every 10 seconds. It works great, except when I undeploy the app, the timer carries on running. The only way to stop it is to restart the server! Is there some JBoss or Spring configuration which will stop the timer when the app is undeployed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我对 Spring Scheduler 遇到了完全相同的问题,并销毁侦听器中的上下文来解决问题。例子:
I had the exact same issue with the Spring Scheduler and destroying the context in a listener did the trick. Example:
发现问题 - 我手动初始化 Spring Context,而不用 servlet 销毁它。添加了一个监听器,现在一切都已排序。
Found the problem - I was manually initialising the Spring Context without destroying it with the servlet. Added a listener, now it's all sorted.