当前位置:   article > 正文

Listener监听器_13.监听器listener类的编写及其实施监听的配置(基于xml配置方式与@weblistener

13.监听器listener类的编写及其实施监听的配置(基于xml配置方式与@weblistener注

1. 监听器

监听器通过监听某种事物的变化,然后执行回调函数,去做出相应的处理。

2. ServletContextListener监听器

在web工程启动的时候,会创建ServletContext对象,在web工程停止的时候ServletContext对象会被销毁,而ServletContextListener监听器可以监听ServletContext对象的创建和销毁过程。

通俗来讲就是: 当ServletContextListener监听器监听到ServletContext对象被创建后,就会马上执行一个方法(可以用来做初始化),当ServletContextListener监听器监听到ServletContext对象被销毁后,又会马上执行另一个方法。


两个方法分别如下:
// 当监听到ServletContext对象创建之后,会马上执行这个方法
@Override
public void contextInitialized(ServletContextEvent servletContextEvent) {
    
}

// 当监听到ServletContext对象销毁之后,会马上执行这个方法
@Override
public void contextDestroyed(ServletContextEvent servletContextEvent) {
    
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

3. ServletContextListener监听器的使用方式

  1. 编写类实现 ServletContextListener
  2. 实现其中的两个回调方法
  3. 在web.xml中配置监听器

示例代码如下:

public class ServletContextListenerImpl implements ServletContextListener {
	@Override
	public void contextInitialized(ServletContextEvent sce) {
		System.out.println("ServletContextListener监听器监听到 ServletContext 对象被创建了");
	}
	@Override
	public void contextDestroyed(ServletContextEvent sce) {
		System.out.println("ServletContextListener监听器监听到 ServletContext 对象被销毁了");
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

web.xml中的配置:

    <!-- 配置监听器 -->
<listener>
    <listener-class>com.qcln.listener.ServletContextListenerImpl</listener-class>
</listener>
  • 1
  • 2
  • 3
  • 4
  • 当启动web工程的时候,会看到控制台输出:ServletContextListener监听器监听到 ServletContext 对象被创建了
  • 当停止web工程的时候,会看到控制台输出:ServletContextListener监听器监听到 ServletContext 对象被销毁了
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/146877?site
推荐阅读
相关标签
  

闽ICP备14008679号