当服务器被杀死时,我的线程是否可能没有被杀死

发布于 2024-08-26 06:42:09 字数 78 浏览 6 评论 0原文

我正在开发的应用程序中正在使用石英调度程序。使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的影子我的梦 2024-09-02 06:42:09

这取决于线程是否被告知守护进程线程或不(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文