Java-SpringBoot-04-自定义监听器及事件

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: 日常项目中,很多业务场景会用到监听器,比如在Service中处理业务时,我们需要记录一个操作的日志到数据库中,我们怎么实现呢?

上篇文章我们看到SpringBoot应用在启动时提供了几种事件的监听,今天来看下如何自定义一个监听器。

       日常项目中,很多业务场景会用到监听器,比如在Service中处理业务时,我们需要记录一个操作的日志到数据库中,我们怎么实现呢?

分析场景

       1.我们需要一个Service类来处理业务。

       2.在操作完或者报错的时候,要监听到事件并处理,所以需要一个监听类和一个事件类。


一、新建实体类

       实体类用来进行业务操作对象的映射。

packagecom.xing.studyboot.entity.dto;
importlombok.Data;
/***  业务日志记录实体类* @author xing**/@DatapublicclassBusinessLogDto {
/*** 业务类型*/privateStringtype;
/*** 业务处理时长*/privatelongbusinessTime;
/*** 业务处理结果*/privateStringresult;
/*** 请求参数*/privateStringparams;
/*** 操作者*/publicStringreceiver;
}


二、建一个事件,集成ApplicationEvent类

packagecom.xing.studyboot.event;
importorg.springframework.context.ApplicationEvent;
importcom.xing.studyboot.entity.dto.BusinessLogDto;
importlombok.Getter;
/***  业务日志事件* @author xing**/@GetterpublicclassBusinessLogEventextendsApplicationEvent {
privatestaticfinallongserialVersionUID=1L;
privateBusinessLogDtobusinessLogDto;
publicBusinessLogEvent(Objectsource, BusinessLogDtobusinessLogDto) {
super(source);
this.businessLogDto=businessLogDto;
  }
}


三、注册业务日志的监听器

       这里注册有多种方法,我们使用@Component注解,实现 ApplicationListener<BusinessLogEvent> 接口。

packagecom.xing.studyboot.listener;
importorg.springframework.context.ApplicationListener;
importorg.springframework.core.annotation.Order;
importorg.springframework.stereotype.Component;
importcom.xing.studyboot.entity.dto.BusinessLogDto;
importcom.xing.studyboot.event.BusinessLogEvent;
/***  注册业务日志的监听器* @author xing* @createTime*/@Component@Order(1)
publicclassBusinessLogListenerimplementsApplicationListener<BusinessLogEvent> {
@OverridepublicvoidonApplicationEvent(BusinessLogEventbusinessLogEvent) {
BusinessLogDtobusinessLogDto=businessLogEvent.getBusinessLogDto();
System.out.println("BusinessLogListener接收到的监听数据是->"+businessLogDto);
    }
}


四、在业务类中将事件发布到应用

packagecom.xing.studyboot.rest.service.impl;
importorg.springframework.beans.factory.annotation.Autowired;
importorg.springframework.context.ApplicationContext;
importorg.springframework.stereotype.Service;
importcom.xing.studyboot.entity.dto.BusinessLogDto;
importcom.xing.studyboot.event.BusinessLogEvent;
importcom.xing.studyboot.rest.service.CommonService;
@ServicepublicclassCommonServiceImplimplementsCommonService {
@AutowiredprivateApplicationContextapplicationContext;
@OverridepublicStringindex() {
BusinessLogDtodto=newBusinessLogDto();
dto.setType("0");
dto.setResult("ok");
dto.setParams("params");
dto.setBusinessTime(20L);
dto.setReceiver("xinghua");
System.out.println("CommonServiceImpl->记录操作日志,发布事件到应用");
applicationContext.publishEvent(newBusinessLogEvent(this, dto));
return"CommonServiceImpl.index";
  }
}



测试发现,输出了监听到的发布事件。

image.png


五、也可以用@EventListener注解来注册监听器,等同于上面的实现 ApplicationListener<BusinessLogEvent> 接口。

@Async是异步监听

packagecom.xing.studyboot.listener;
importorg.springframework.context.event.EventListener;
importorg.springframework.core.annotation.Order;
importorg.springframework.scheduling.annotation.Async;
importorg.springframework.stereotype.Component;
importcom.xing.studyboot.entity.dto.BusinessLogDto;
importcom.xing.studyboot.event.BusinessLogEvent;
/***  使用注解的形式注册监听器* @author xing* @createTime*/@Component@Order(2)
publicclassBusinessLogAnnotationListener {
/*** 注册监听实现方法* @param businessLogEvent 业务处理推送事件*/@EventListener@Asyncpublicvoidregister(BusinessLogEventbusinessLogEvent) {
// 获取业务处理日志对象BusinessLogDtobusinessLogDto=businessLogEvent.getBusinessLogDto();
System.out.println("BusinessLogAnnotationListener接收到的监听数据是->"+businessLogDto);
    }
}

测试发现同样监听到了事件,ok!

image.png

@Order(2)注解可以设置监听器的优先级。

相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
目录
相关文章
|
3天前
|
Java 开发者 Spring
java springboot监听事件和处理事件
通过上述步骤,开发者可以在Spring Boot项目中轻松实现事件的发布和监听。事件机制不仅解耦了业务逻辑,还提高了系统的可维护性和扩展性。掌握这一技术,可以显著提升开发效率和代码质量。
66 33
|
5天前
|
Java 开发者 Spring
java springboot监听事件和处理事件
通过上述步骤,开发者可以在Spring Boot项目中轻松实现事件的发布和监听。事件机制不仅解耦了业务逻辑,还提高了系统的可维护性和扩展性。掌握这一技术,可以显著提升开发效率和代码质量。
31 13
|
9天前
|
Java Spring
Java Spring Boot监听事件和处理事件
通过上述步骤,我们可以在Java Spring Boot应用中实现事件的发布和监听。事件驱动模型可以帮助我们实现组件间的松耦合,提升系统的可维护性和可扩展性。无论是处理业务逻辑还是系统事件,Spring Boot的事件机制都提供了强大的支持和灵活性。希望本文能为您的开发工作提供实用的指导和帮助。
51 15
|
11天前
|
Java 开发者 Spring
Java Springboot监听事件和处理事件
通过这些内容的详细介绍和实例解析,希望能帮助您深入理解Spring Boot中的事件机制,并在实际开发中灵活应用,提高系统的可维护性和扩展性。
38 7
|
9天前
|
监控 Java
java异步判断线程池所有任务是否执行完
通过上述步骤,您可以在Java中实现异步判断线程池所有任务是否执行完毕。这种方法使用了 `CompletionService`来监控任务的完成情况,并通过一个独立线程异步检查所有任务的执行状态。这种设计不仅简洁高效,还能确保在大量任务处理时程序的稳定性和可维护性。希望本文能为您的开发工作提供实用的指导和帮助。
50 17
|
20天前
|
Java
Java—多线程实现生产消费者
本文介绍了多线程实现生产消费者模式的三个版本。Version1包含四个类:`Producer`(生产者)、`Consumer`(消费者)、`Resource`(公共资源)和`TestMain`(测试类)。通过`synchronized`和`wait/notify`机制控制线程同步,但存在多个生产者或消费者时可能出现多次生产和消费的问题。 Version2将`if`改为`while`,解决了多次生产和消费的问题,但仍可能因`notify()`随机唤醒线程而导致死锁。因此,引入了`notifyAll()`来唤醒所有等待线程,但这会带来性能问题。
Java—多线程实现生产消费者
|
5天前
|
缓存 安全 算法
Java 多线程 面试题
Java 多线程 相关基础面试题
|
22天前
|
安全 Java Kotlin
Java多线程——synchronized、volatile 保障可见性
Java多线程中,`synchronized` 和 `volatile` 关键字用于保障可见性。`synchronized` 保证原子性、可见性和有序性,通过锁机制确保线程安全;`volatile` 仅保证可见性和有序性,不保证原子性。代码示例展示了如何使用 `synchronized` 和 `volatile` 解决主线程无法感知子线程修改共享变量的问题。总结:`volatile` 确保不同线程对共享变量操作的可见性,使一个线程修改后,其他线程能立即看到最新值。
|
22天前
|
消息中间件 缓存 安全
Java多线程是什么
Java多线程简介:本文介绍了Java中常见的线程池类型,包括`newCachedThreadPool`(适用于短期异步任务)、`newFixedThreadPool`(适用于固定数量的长期任务)、`newScheduledThreadPool`(支持定时和周期性任务)以及`newSingleThreadExecutor`(保证任务顺序执行)。同时,文章还讲解了Java中的锁机制,如`synchronized`关键字、CAS操作及其实现方式,并详细描述了可重入锁`ReentrantLock`和读写锁`ReadWriteLock`的工作原理与应用场景。