码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot - 使用Listener

时间:2018-10-06 20:36:08      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:[]   tde   code   ret   后台   wol   override   inf   list   

1、在SpringBoot中使用Listener

1.1、使用注解注册Listener:

/**
 * SpringBoot使用 Listener
 */
@WebListener
public class OneListener implements ServletContextListener {

    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        System.out.println("OneListener init ...");
    }

    @Override
    public void contextDestroyed(ServletContextEvent servletContextEvent) {
    }
}

 

@SpringBootApplication
//在 springBoot 启动时会扫描@WebListener并实例化
@ServletComponentScan
public class OneListenerApp {
    public static void main(String[] args) {
        SpringApplication.run(OneListenerApp.class, args);
    }
}

 

后台打印:

 技术分享图片

 

1.2、另一种初始化Filter的方法:方法注册

/**
 * SpringBoot使用 Listener
 */
public class TwoListener implements ServletContextListener {

    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        System.out.println("TwoListener init ...");
    }

    @Override
    public void contextDestroyed(ServletContextEvent servletContextEvent) {

    }
}

 

@SpringBootApplication
public class TwoListenerApp {
    public static void main(String[] args) {
        SpringApplication.run(TwoListenerApp.class, args);
    }

    @Bean
    public ServletListenerRegistrationBean registrationListenerBean(){
        ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean(new TwoListener());
        return bean;
    }
}

 

后台打印:

 技术分享图片

 

SpringBoot - 使用Listener

标签:[]   tde   code   ret   后台   wol   override   inf   list   

原文地址:https://www.cnblogs.com/simple-ly/p/9748278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!