Spring Boot中使用SpringEvent组件

Spring的事件机制是基于观察者模式的实现,主要由以下三个部分组成:

事件(Event):事件是应用中发生的重要事情,通常是一个继承自ApplicationEvent的类。

事件发布器(Publisher):发布事件的对象,通常是Spring的应用上下文(ApplicationContext)。

事件监听器(Listener):监听并处理事件的对象,通常是实现了ApplicationListener接口的类。

  • 同步方法
  1. 创建自定义事件,自定义事件需要继承ApplicationEvent类,并添加相应的属性和构造方法
package com.ssdl.baize.pub;

import org.springframework.context.ApplicationEvent;

public class CustomEvent extends ApplicationEvent {
    private String message;

    public CustomEvent(Object source, String message) {
        super(source);
        this.message = message;
    }

    public String getMessage() {
        return message;
    }
}
  1. 创建事件监听器,用于监听和处理自定义事件。事件监听器需要实现ApplicationListener接口,并覆盖onApplicationEvent方法。
package com.ssdl.baize.pub;

import lombok.extern.slf4j.Slf4j;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

@Component
@Slf4j
public class CustomEventListener implements ApplicationListener<CustomEvent> {

    @Override
    public void onApplicationEvent(CustomEvent event) {
        try {
            Thread.sleep(5000L);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("休眠5秒");
        log.info("Received custom event - {}" , event.getMessage());
    }
}

3.发布事件,要在某个组件中注入ApplicationEventPublisher,并调用其publishEvent方法。

package com.ssdl.baize.pub;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.stereotype.Component;

@Component
public class CustomEventPublisher {

    @Autowired
    private ApplicationEventPublisher applicationEventPublisher;

    public void publishEvent(String message) {
        CustomEvent customEvent = new CustomEvent(this, message);
        applicationEventPublisher.publishEvent(customEvent);
    }
}

4.测试

	@Autowired
    private CustomEventPublisher customEventPublisher;

    @GetMapping(path = "/pub")
    @ApiOperation(value = "发布订阅")
    public String pub(@RequestParam("message") String message) {
        log.info("start");
         customEventPublisher.publishEvent(message);
         log.info("发送完成!!!");
         return "OK";
    }

5.结果
在这里插入图片描述

  • 异步方法
    说明:创建自定义事件、发布事件、测试这三个如同步方法一样,只需要更改创建事件监听器即可
package com.ssdl.baize.pub;

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;

@Configuration
@EnableAsync
public class AsyncConfig {
}
package com.ssdl.baize.pub;

import lombok.extern.slf4j.Slf4j;
import org.springframework.context.event.EventListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;

@Component
@Slf4j
public class AsyncCustomEventListener {

    @Async
    @EventListener(condition = "#event.message.startsWith('filter')")
    public void handleCustomEvent(CustomEvent event) {
        try {
            Thread.sleep(5000L);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("休眠5秒");
        log.info("Async received custom event - {}" , event.getMessage());
    }
}

注:condition 限制只接收filter开头的消息

结果:
在这里插入图片描述

  • 5
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot Camunda是指在Spring Boot项目集成Camunda工作流引擎的过程。具体步骤如下: 1. 在项目的配置文件添加Camunda的依赖项。这可以通过在pom.xml文件添加相关的依赖项来完成。例如,在dependencies标签添加以下依赖项: ```xml <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter</artifactId> <version>3.4.0</version> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> <version>3.4.0</version> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> <version>3.4.0</version> </dependency> ``` 2. 添加`@EnableProcessApplication`注解到启动类上。这个注解会自动将Camunda的相关组件集成到Spring Boot应用。例如,在启动类上添加以下注解: ```java @SpringBootApplication @EnableProcessApplication public class CamundaDemoApplication { public static void main(String[] args) { SpringApplication.run(CamundaDemoApplication.class, args); } } ``` 3. 在程序编写代码对流程进行加载。可以通过使用Camunda的API来加载和管理流程。例如,在启动类添加以下代码: ```java @SpringBootApplication @EnableProcessApplication public class CamundaDemoApplication { public static void main(String[] args) { SpringApplication.run(CamundaDemoApplication.class, args); } @Autowired private RuntimeService runtimeService; @EventListener private void processPostDeploy(PostDeployEvent event) { runtimeService.startProcessInstanceByKey("test"); } } ``` 这段代码使用了Camunda的RuntimeService来启动一个名为"test"的流程实例。 以上是集成Spring Boot和Camunda的基本步骤。通过这样的集成,你可以在Spring Boot项目使用Camunda的工作流功能。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [springboot集成camunda](https://blog.csdn.net/weixin_43779185/article/details/115867902)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Camunda与springboot集成入门实战](https://blog.csdn.net/qq_40729302/article/details/125623345)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值