91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用springboot怎么實現事件監聽

發布時間:2021-04-20 16:34:22 來源:億速云 閱讀:341 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關使用springboot怎么實現事件監聽,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

定義事件

@Getter
public class TestEvent extends ApplicationEvent {
 private String msg;

 public TestEvent(Object source, String msg) {
  super(source);
  this.msg = msg;
 }
}

定義事件監聽(注解方式)

 @Component
 public class TestListen {
 @EventListener
 public void testListen(TestEvent event) {
  System.out.println(event.getMsg());
 }
}

注意:@Component 注解

發布事件

@Autowired
private ApplicationContext publiser;

@GetMapping("test-listen")
public void testListen() {
 for (int i = 0; i < 10; i++) {
  System.out.println("i = " + i);
 }
 publiser.publishEvent(new TestEvent(this, "測試事件監聽"));
 for (int j = 0; j < 10; j++) {
  System.out.println("j = " + j);
 }
}

測試時執行順序:

  • i循環

  • 打印"event = [測試事件監聽]"

  • j循環

異步監聽

監聽加上@Async注解

@Component
public class TestListen {
 @EventListener
 @Async
 public void testListen(TestEvent event) {
  for (int i = 0; i < 10; i++) {
   System.out.println("event = [" + event.getMsg() + "]");
  }
 }
}

測試時執行順序:

  • i循環

  • j循環

  • 打印"event = [測試事件監聽]"

代碼: async

springboot進行事件監聽有四種方式:

1.手工向ApplicationContext中添加監聽器
2.將監聽器裝載入spring容器
3.在application.properties中配置監聽器
4.通過@EventListener注解實現事件監聽

講到事件監聽,這里我們說下自定義事件和自定義監聽器類的實現方式:

  • 自定義事件:繼承自ApplicationEvent抽象類,然后定義自己的構造器

  • 自定義監聽:實現ApplicationListener<T>接口,然后實現onApplicationEvent方法

下面講下4種事件監聽的具體實現

方式1.

首先創建MyListener1類

public class MyListener1 implements ApplicationListener<MyEvent>
{
 Logger logger = Logger.getLogger(MyListener1.class);
 
 public void onApplicationEvent(MyEvent event)
 {
 logger.info(String.format("%s監聽到事件源:%s.", MyListener1.class.getName(), event.getSource()));
 }
}

然后在springboot應用啟動類中獲取ConfigurableApplicationContext上下文,裝載監聽

@SpringBootApplication
public class LisenterApplication
{
 public static void main(String[] args)
 {
 ConfigurableApplicationContext context = SpringApplication.run(LisenterApplication.class, args);
 //裝載監聽
 context.addApplicationListener(new MyListener1());
 }
}

方式2.

創建MyListener2類,并使用@Component注解將該類裝載入spring容器中

@Component
public class MyListener2 implements ApplicationListener<MyEvent>
{
 Logger logger = Logger.getLogger(MyListener2.class);
 
 public void onApplicationEvent(MyEvent event)
 {
 logger.info(String.format("%s監聽到事件源:%s.", MyListener2.class.getName(), event.getSource()));
 }
}

方式3.

首先創建MyListener3類

public class MyListener3 implements ApplicationListener<MyEvent>
{
 Logger logger = Logger.getLogger(MyListener3.class);
 
 public void onApplicationEvent(MyEvent event)
 {
 logger.info(String.format("%s監聽到事件源:%s.", MyListener3.class.getName(), event.getSource()));
 }
}

然后在application.properties中配置監聽

context.listener.classes=com.listener.MyListener3

方式4.

創建MyListener4類,該類無需實現ApplicationListener接口,使用@EventListener裝飾具體方法

@Component
public class MyListener4
{
 Logger logger = Logger.getLogger(MyListener4.class);
 
 @EventListener
 public void listener(MyEvent event)
 {
 logger.info(String.format("%s監聽到事件源:%s.", MyListener4.class.getName(), event.getSource()));
 }
}

自定義事件代碼如下:

@SuppressWarnings("serial")
public class MyEvent extends ApplicationEvent
{
 public MyEvent(Object source)
 {
 super(source);
 }
}

進行測試(在啟動類中加入發布事件的邏輯):

@SpringBootApplication
public class LisenterApplication
{
 public static void main(String[] args)
 {
 ConfigurableApplicationContext context = SpringApplication.run(LisenterApplication.class, args);
 //裝載事件
 context.addApplicationListener(new MyListener1());
 //發布事件
 context.publishEvent(new MyEvent("測試事件."));
 }
}

啟動后,日志打印如下:

2018-06-15 10:51:20.198  INFO 4628 --- [           main] com.listener.MyListener3                 : com.listener.MyListener3監聽到事件源:測試事件..
2018-06-15 10:51:20.198  INFO 4628 --- [           main] com.listener.MyListener4                 : com.listener.MyListener4監聽到事件源:測試事件..
2018-06-15 10:51:20.199  INFO 4628 --- [           main] com.listener.MyListener2                 : com.listener.MyListener2監聽到事件源:測試事件..
2018-06-15 10:51:20.199  INFO 4628 --- [           main] com.listener.MyListener1                 : com.listener.MyListener1監

上述就是小編為大家分享的使用springboot怎么實現事件監聽了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和顺县| 永康市| 海淀区| 谷城县| 九江县| 定西市| 罗山县| 漠河县| 台东市| 长乐市| 昌都县| 河曲县| 光山县| 博爱县| 万州区| 延寿县| 二连浩特市| 常州市| 桃江县| 宜昌市| 修武县| 临澧县| 明光市| 盐城市| 望都县| 定西市| 修文县| 公安县| 长白| 岐山县| 宣恩县| 望江县| 民乐县| 东安县| 若尔盖县| 集安市| 习水县| 泽州县| 望奎县| 忻城县| 宜宾县|