如何在 Resin 中执行关闭时的清理代码?
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
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 thecontextDestroyed
method, where you can terminate your processes.You can also use the
ServletContextListener
to perform any startup operations, via it'scontextInitialized
method.