ServletContextListener接口用法

Posted 星朝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ServletContextListener接口用法相关的知识,希望对你有一定的参考价值。

ServletContextListener接口用于tomcat启动时自动加载函数,方法如下:
一、需加载的类必须实现ServletContextListener接口。
二、该接口中有两个方法必须实现:
1、contextInitialized(ServletContextEvent sce)该方法为服务器起动时加载内容。
2、contextDestroyed(ServletContextEvent sce)该方法为服务器关闭时加载的内容。
三、如:

public class ReadContext extends HttpServlet implements ServletContextListener{
    public void  contextInitialized(ServletContextEvent sce){
        System.out.println("this is contextInitialized");
    }
    public void contextDestroyed(ServletContextEvent sce){
        System.out.println("this is contextDestroyed");
    }
}

四、web.xml配置listener标签

<listener>
    <listener-class>ReadContext</listener-class>
</listener>

五、如果contextDestroyed不执行多是因为tomcat没有正常关闭或是没有实现ServletContextListener接口。在MyEclipse关闭tomcat的正确方法是:点击右键点关闭






以上是关于ServletContextListener接口用法的主要内容,如果未能解决你的问题,请参考以下文章

ServletContextListener

ServletContextListener

ServletContextListener使用详解

ServletContextListener在Springboot中的使用

javaEE之-------统计站点刷新量

ServletContextListener和ServletContext