如何知道 JSF 1.2 应用程序中的服务器(tomcat6)正在关闭
我正在尝试在我的网络应用程序中实现一个警报系统 当tomcat关闭时给我发邮件。我可以通过解析服务器日志来做到这一点。
但我希望应用程序给我发邮件。
I am trying to implement a alerting system in my web app which
mails me when the tomcat is shutting down. I can do it by parsing the server logs.
But i want the app to mail me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ServletContextListener.contextDestroyed。当 Tomcat 关闭或应用程序取消部署时会调用它。
这是一个例子:
http://www .java-tips.org/java-ee-tips/java-servlet/how-to-work-with-servletcontextlistener.html
ServletContextListener.contextDestroyed. It is called when the Tomcat is shutting down or when the application is undeployed.
Here is an example:
http://www.java-tips.org/java-ee-tips/java-servlet/how-to-work-with-servletcontextlistener.html