使用Spring事件机制实现异步的方法

作者:Joepis 时间:2023-06-23 06:47:08 

当把一个事件发布到Spring提供的ApplicationContext中,被 * 侦测到,就会执行对应的处理方法。

事件本身
事件是一个自定义的类,需要继承Spring提供的ApplicationEvent


@Data
public class MyEvent extends ApplicationEvent {
 private String msg;

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

事件监听

基本方法是实现ApplicationListener接口,自定义一个 * ,实现onApplicationEvent()方法,然后添加到ApplicationContext

比如:


public class MyListener implements ApplicationListener<MyEvent> {

@Override
 public void onApplicationEvent(MyEvent event) {
   System.out.print("监听到MyEvent事件");
 }
}
...
// SpringBoot的启动类中添加 *
   public static void main(String[] args) {
   SpringApplication application = new SpringApplication(MyApplication.class);
   application.addListeners(new MyListener());
   application.run(args);
 }

也可以使用注解@EventListener(推荐):原理就是通过扫描这个注解,创建 * 并添加到ApplicationContext


@Component
@Slf4j
public class MyEventHandler {

@EventListener
 public void handleEvent(MyEvent event) {
   log.info("------------处理事件:{}", event.getMsg());
   try {
     Thread.sleep(5 * 1000L);
     log.info("事件1(5s)处理完成");
   } catch (InterruptedException e) {
     e.printStackTrace();
   }
 }

}

事件发布

可以通过上下文对象的发布方法ConfigurableApplicationContext::publishEvent()来发布。

也可以实现ApplicationEventPublisherAware接口来发布(推荐)。


@Component
@Slf4j
public class EventService implements ApplicationEventPublisherAware {
 public ApplicationEventPublisher publisher;

@Override
 public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
   this.publisher = applicationEventPublisher;
 }

public String doEventWork(String msg) {
   log.info("------------publish event:" + msg);
   MyEvent event = new MyEvent(this, msg);
   publisher.publishEvent(event);
   return "OK";
 }
}

测试代码


@SpringBootTest
@RunWith(SpringRunner.class)
public class EventServiceTest {
 @Autowired
 private EventService service;

@Test
 public void eventTest() {
   String msg="Java Code";
   service.doEventWork(msg);
 }
}

使用Spring事件机制实现异步的方法

注意

如果2个事件之间是继承关系,会先监听到子类事件,处理完再监听父类。


// MyEvent2 extends MyEvent

@Component
@Slf4j
public class MyEventHandler {

@EventListener
 public void handleEvent(MyEvent event) {
   log.info("------------处理事件:{}", event.getMsg());
   try {
     Thread.sleep(5 * 1000L);
     log.info("事件1(5s)处理完成");
   } catch (InterruptedException e) {
     e.printStackTrace();
   }
 }

@EventListener
 public void handleEvent2(MyEvent2 event) {
   log.info("------------处理事件2:{}", event.getMsg());
   try {
     Thread.sleep(10 * 1000L);
     log.info("事件2(10s)处理完成");
   } catch (InterruptedException e) {
     e.printStackTrace();
   }
 }
}

当我publish一个子类事件MyEvent2时,日志如下:

使用Spring事件机制实现异步的方法

来源:https://www.jianshu.com/p/47ae0bbdf205

标签:Spring,事件机制,异步
0
投稿

猜你喜欢

  • Android自定义ProgressBar实现漂亮的进度提示框

    2023-04-04 22:05:30
  • C#自定义函数NetxtString生成随机字符串

    2022-06-18 20:43:39
  • Android 获取随机验证码功能示例

    2023-01-22 10:03:27
  • Android的消息机制

    2023-08-05 10:19:28
  • Android 双击Back键退出应用的实现方法

    2023-07-06 05:41:41
  • Mybatis中 mapper-locations和@MapperScan的作用

    2023-07-13 08:08:34
  • java 流与 byte[] 的互转操作

    2023-06-26 11:25:46
  • Android7.0 MTK设置默认桌面

    2023-09-26 12:30:43
  • Spring mvc Json处理实现流程代码实例

    2023-07-14 21:31:06
  • Java定位问题线程解析

    2023-08-09 22:04:27
  • C#实现无损压缩图片的示例详解

    2023-04-29 21:07:26
  • Android Gridview布局出现滚动条或组件冲突解决方法

    2022-06-27 13:44:04
  • 利用C#版OpenCV实现圆心求取实例代码

    2022-10-28 12:51:48
  • C#实现百分比转小数的方法

    2021-09-09 00:53:53
  • 基于Spring中的线程池和定时任务功能解析

    2022-08-20 03:49:45
  • Android下拉刷新ListView——RTPullListView(demo)

    2022-10-11 12:03:10
  • SpringBoot常用数据库开发技术汇总介绍

    2023-11-11 09:39:22
  • Java数据结构之链表、栈、队列、树的实现方法示例

    2021-10-07 10:40:29
  • Java基础详解之集合框架工具Collections

    2021-11-09 02:40:32
  • mybatis和mybatis-plus同时使用的坑

    2021-07-22 14:03:13
  • asp之家 软件编程 m.aspxhome.com