真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot如何整合Listener

今天就跟大家聊聊有關(guān)SpringBoot如何整合Listener,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

專(zhuān)業(yè)公司可以根據(jù)自己的需求進(jìn)行定制,網(wǎng)站建設(shè)、做網(wǎng)站構(gòu)思過(guò)程中功能建設(shè)理應(yīng)排到主要部位公司網(wǎng)站建設(shè)、做網(wǎng)站的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義

SpringBoot 整合 Listener

一.注解方式整合

1. 創(chuàng)建Listener類(lèi) 實(shí)現(xiàn) ServletContextListener 接口

  • 需要@WebListener 注解

package com.zhl.springbootweb.listener;/** 整合Listener* */import javax.servlet.ServletContextEvent;import javax.servlet.ServletContextListener;import javax.servlet.annotation.WebListener;@WebListenerpublic class FirstListener implements ServletContextListener {@Override    public void contextInitialized(ServletContextEvent sce) {
        System.out.println("FirstListener init");
    }@Override    public void contextDestroyed(ServletContextEvent sce) {

    }
}

2.啟動(dòng)類(lèi)需要@ServletComponentScan 注解

@SpringBootApplication/*在SpringBoot啟動(dòng)時(shí)會(huì)掃描@WebServlet,@WebFilter @WebListener注解,并將該類(lèi)實(shí)例化*/@ServletComponentScanpublic class SpringbootWebApplication {public static void main(String[] args) {
        SpringApplication.run(SpringbootWebApplication.class, args);
    }

}

3.測(cè)試

SpringBoot如何整合Listener

二、方法方式

1.創(chuàng)建Listener對(duì)象

/*整合Listener 方式二*/public class SecondListener implements ServletContextListener {@Override    public void contextInitialized(ServletContextEvent sce) {
        System.out.println("SecondListener init");
    }@Override    public void contextDestroyed(ServletContextEvent sce) {

    }
}

2.創(chuàng)建配置類(lèi)

@Configurationpublic class ListenerConfig {@Bean    public ServletListenerRegistrationBean servletListenerRegistrationBean(){
        ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean(new SecondListener());return  bean;
    }
}

3.測(cè)試 

SpringBoot如何整合Listener

看完上述內(nèi)容,你們對(duì)SpringBoot如何整合Listener有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


新聞名稱(chēng):SpringBoot如何整合Listener
URL鏈接:http://weahome.cn/article/gjodhd.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部