事件監聽的流程分爲三步:
一、自定義事件,通常是繼承ApplicationEvent抽象類。
二、定義事件監聽器,通常是實現ApplicationListener接口。
三、a、啓動的時候,須要將監聽器加入到Spring容器中。springb、或者將監聽器加入到容器中。@Componentapp
c、使用@EventListener註解,在方法上面加入@EventListener註解,且該類須要歸入到spring容器中進行管理。 ide
d、或者使用配置項,在默認的配置文件application.properties配置文件裏面加入進去,context.listener.classes配置項。context.listener.classes=com.bie.license.ListenerApplicationListener
四、發佈事件。使用ApplicationContext.publishEvent發佈事件。
spa
一、事件監聽第一步,定義一個事件,繼承ApplicationEvent抽象類。3d
1 package com.bie.license; 2 3 import org.springframework.context.ApplicationEvent; 4 5 /** 6 * 7 * @Description TODO 8 * @author biehl 9 * @Date 2018年12月31日 下午5:02:43 10 * 一、第一步,建立一個事件,繼承ApplicationEvent 11 * 定義事件 12 */ 13 14 public class EventApplicationEvent extends ApplicationEvent{ 15 16 /** 17 * 18 */ 19 private static final long serialVersionUID = 1L; 20 21 public EventApplicationEvent(Object source) { 22 super(source); 23 } 24 25 }
二、第二步,定義一個監聽器,看看是監聽那個事件。繼承ApplicationListener類。code
1 package com.bie.license; 2 3 import org.springframework.context.ApplicationListener; 4 5 /** 6 * 7 * @Description TODO 8 * @author biehl 9 * @Date 2018年12月31日 下午5:05:46 10 * 二、第二步,定義一個監聽器,監聽哪個事件。若是不執行第三步,將ListenerApplicationListener加入到容器中,使用@Component註解也能夠的。 11 */ 12 13 public class ListenerApplicationListener implements ApplicationListener<EventApplicationEvent>{ 14 15 @Override 16 public void onApplicationEvent(EventApplicationEvent event) { 17 System.out.println("接受到事件 : " + event.getClass()); 18 } 19 20 }
三、第三步,啓動的時候,須要將監聽器加入到Spring容器中。發佈事件。使用ApplicationContext.publishEvent發佈事件。blog
1 package com.bie.license; 2 3 import org.springframework.boot.SpringApplication; 4 import org.springframework.boot.autoconfigure.SpringBootApplication; 5 import org.springframework.context.ConfigurableApplicationContext; 6 7 /** 8 * 9 * @Description TODO 10 * @author biehl 11 * @Date 2018年12月31日 下午5:09:10 12 * 13 */ 14 @SpringBootApplication 15 public class ListenerApplication { 16 17 public static void main(String[] args) { 18 SpringApplication app = new SpringApplication(ListenerApplication.class); 19 app.addListeners(new ListenerApplicationListener());//app.addListeners(new ListenerApplicationListener());或者將ListenerApplicationListener加入到bean中也能夠。 20 ConfigurableApplicationContext context = app.run(args); 21 // 第三步,發佈事件 22 context.publishEvent(new EventApplicationEvent(new Object())); 23 // 關閉 24 context.close(); 25 } 26 }
運行效果以下所示:繼承
使用@EventListener註解來進行加入到Spring容器中:接口
1 package com.bie.license; 2 3 import org.springframework.context.ApplicationEvent; 4 import org.springframework.context.event.EventListener; 5 import org.springframework.stereotype.Component; 6 7 /** 8 * 9 * @Description TODO 10 * @author biehl 11 * @Date 2018年12月31日 下午5:38:10 12 * 13 */ 14 @Component 15 public class EventHandle { 16 17 /** 18 * 參數任意 19 */ 20 @EventListener 21 public void event(ApplicationEvent event) { 22 System.out.println("EventHandle 接受到事件 : " + event.getClass()); 23 } 24 }
待續.......事件