今天就跟大家聊聊有關(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í)際意義
需要@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) { } }
@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); } }
/*整合Listener 方式二*/public class SecondListener implements ServletContextListener {@Override public void contextInitialized(ServletContextEvent sce) { System.out.println("SecondListener init"); }@Override public void contextDestroyed(ServletContextEvent sce) { } }
@Configurationpublic class ListenerConfig {@Bean public ServletListenerRegistrationBean servletListenerRegistrationBean(){ ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean(new SecondListener());return bean; } }
看完上述內(nèi)容,你們對(duì)SpringBoot如何整合Listener有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。