zoukankan      html  css  js  c++  java
  • SpringBoot: 4.SpringBoot整合listener(转)

     

    整合方式一:通过注解扫描完成 Listener 组件的注册

    1、编写listener

    复制代码
    package com.bjsxt.listener;
    
    import javax.servlet.ServletContextEvent;
    import javax.servlet.ServletContextListener;
    import javax.servlet.annotation.WebListener;
    
    /**
     * Created by Administrator on 2019/2/5.
     */
    @WebListener
    public class FirstListener implements ServletContextListener{
    
        @Override
        public void contextInitialized(ServletContextEvent servletContextEvent) {
            System.out.println("FirstListener初始化......");
        }
    
        @Override
        public void contextDestroyed(ServletContextEvent servletContextEvent) {
    
        }
    }
    复制代码

    2、编写启动类

    复制代码
    package com.bjsxt;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.web.servlet.ServletComponentScan;
    
    /**
     * Created by Administrator on 2019/2/4.
     */
    @SpringBootApplication
    @ServletComponentScan   //在springboot启动时,会扫描@WebServlet、@WebFilter、@WebListener等,并将该类实例化
    public class App {
    
        public static void main(String[] args){
            SpringApplication.run(App.class,args);
        }
    }
    复制代码

     

    整合方式二:通过方法完成 Listener 组件注册

    1、编写listener

    复制代码
    package com.bjsxt.listener;
    
    import javax.servlet.ServletContextEvent;
    import javax.servlet.ServletContextListener;
    import javax.servlet.annotation.WebListener;
    
    /**
     * Created by Administrator on 2019/2/5.
     */
    public class SecondListener implements ServletContextListener{
    
        @Override
        public void contextInitialized(ServletContextEvent servletContextEvent) {
            System.out.println("SecondListener初始化......");
        }
    
        @Override
        public void contextDestroyed(ServletContextEvent servletContextEvent) {
    
        }
    }
    复制代码

    2、编写启动类

    复制代码
    package com.bjsxt;
    
    import com.bjsxt.filter.SecondFilter;
    import com.bjsxt.listener.SecondListener;
    import com.bjsxt.servlet.SecondServlet;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.web.servlet.FilterRegistrationBean;
    import org.springframework.boot.web.servlet.ServletComponentScan;
    import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
    import org.springframework.boot.web.servlet.ServletRegistrationBean;
    import org.springframework.context.annotation.Bean;
    
    /**
     * Created by Administrator on 2019/2/4.
     */
    @SpringBootApplication
    public class App2 {
    
        public static void main(String[] args){
            SpringApplication.run(App2.class,args);
        }
    
        /**
         * 注册Servlet
         * @return
         */
        @Bean
        public ServletRegistrationBean getServletRegistrationBean(){
            ServletRegistrationBean bean = new ServletRegistrationBean(new SecondServlet());
            bean.addUrlMappings("/second");
            return bean;
        }
    
        /**
         * 注册Filter
         * @return
         */
        @Bean
        public FilterRegistrationBean getFilterRegistrationBean(){
            FilterRegistrationBean bean = new FilterRegistrationBean(new SecondFilter());
            bean.addUrlPatterns(new String[]{"/second"});
            return bean;
        }
    
    
        /**
         * 注册Listener
         * @return
         */
        @Bean
        public ServletListenerRegistrationBean<SecondListener> getServletListenerRegistrationBean(){
            ServletListenerRegistrationBean<SecondListener> bean = new ServletListenerRegistrationBean<SecondListener>(new SecondListener());
            return bean;
        }
    }
    复制代码

    运行启动类,监听器初始化输出的信息就会在控制台输出

     
     
  • 相关阅读:
    Android导出jar包后的资源使用问题
    怎样设计接口?
    自己动手写shell之chgrp,chown,chmod
    妹子图太多怎么看才好,Swing来支招
    Etcd学习(一)安装和.NETclient測试
    js中return false,return,return true的使用方法及区别
    C语言运算符的优先级
    运动物体检测与跟踪——累积权重构建背景模型
    推理集 —— 现场的观察
    推理集 —— 现场的观察
  • 原文地址:https://www.cnblogs.com/kuangzhisen/p/10427134.html
Copyright © 2011-2022 走看看