当服务器被杀死时,我的线程是否可能没有被杀死
我正在开发的应用程序中正在使用石英调度程序。使用quartz调度程序运行的进程会产生新线程。我想知道服务器被杀死后这些线程是否有可能继续存在?
A quartz scheduler is being used in an Application I am working on. A process that runs using the quartz scheduler spawns new threads. I was wondering if it is possible for these threads to continue living after the server is killed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于线程是否被告知守护进程线程或不(Quartz默认为不)。仅当所有剩余的活动线程都是守护线程时,JVM 才会关闭。
That depends on whether the threads were told to be daemon threads or not (Quartz defaults to not). The JVM will only shutdown when all the remaining active threads are daemon threads.