如何在 Resin 中执行关闭时的清理代码?

发布于 2024-11-28 16:41:47 字数 97 浏览 2 评论 0原文

有没有办法在 Resin 中注册一个函数,以便在 Resin 关闭时运行该函数?我知道您可以在启动时初始化 servlet,但我需要确保在服务器关闭时终止所有 exec() 进程。

Is there a way to register a function in Resin so that it runs whenever Resin is shut down? I know you can init servlets on startup, but I need to make sure that all of my exec()'ed processes are terminated when the server is shutdown.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

z祗昰~ 2024-12-05 16:41:47

使用 ServletContextListener 来接收有关 Web 应用程序即将关闭的通知。您需要提供 contextDestroyed 方法,您可以在其中终止进程。

您还可以使用 ServletContextListener 来执行任何启动操作,通过它的 contextInitialized 方法。

Use a ServletContextListener to receive notifications about impending shutdown of a web application. You'll need to provide an implementation for the contextDestroyed method, where you can terminate your processes.

You can also use the ServletContextListener to perform any startup operations, via it's contextInitialized method.

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