此页面所有软件内容、截图、价格、介绍等均来源于互联网,地址均为第三方提供,请谨慎下载。
JFinal event 事件驱动
模仿的Spring中的消息事件:详解Spring事件驱动模型
专为JFinal设计,无任何第三方依赖,小巧玲珑。
目录说明
- JFinal-event,JFinal-event 源码。
- JFinal-event-demo,JFinal-event 使用 demo。
- JFinal-eventx,Idea 插件 试用下载
idea 插件效果演示
初始化插件
// 初始化插件 EventPlugin plugin = new EventPlugin(); // 设置为异步,默认同步,或者使用`threadPool(ExecutorService executorService)`自定义线程池。 plugin.async(); // 开启类扫描,默认为 false,用于不支持注解处理器的情况,用于不使用 maven 或者不支持注解处理器的情况。 // 你也可以根据 JFinal.me().getConstants().getDevMode(),判断是否开启类扫描,因为注解处理器 maven 是支持的。 plugin.enableClassScan(); // 扫描 jar 里的 监听器,默认不扫描,在开启 enableClassScan 有效果 plugin.scanJar(); // 扫描的包,默认全扫描,可提升启动速度,在开启 enableClassScan 有效果 plugin.scanPackage("com.xxx.包名"); // 手动启动插件,用于main方法启动,jfinal中不需要,添加插件即可。 plugin.start(); // 停止插件,用于main方法测试 plugin.stop();
新建事件类(任意模型即可 2.3.0支持)
public class AccountEvent { private Integer id; private String name; private Integer age; // 省略 get set }
编写监听
@EventListener public void listenTest1Event(AccountEvent event) { System.out.println("AccountEvent:" event); } @EventListener public void allEvent(Object event) { // 监听所有的事件 System.out.println("allEvent:\t" event); }
发送事件
AccountEvent event = new AccountEvent(); event.setId(1); event.setName("张三"); event.setAge(18); EventKit.post(event);
@EventListener注解说明
示例
@EventListener(events = Test1Event.class, order = 1, async = true, condition = "event.isExec()")
说明
value
或events
支持的事件类型数组,用于将事件方法定义为ApplicationEvent
或者自定义父类。
public class Test { @EventListener({Test1Event.class, Test2Event.class}) public void applicationEvent(ApplicationEvent event) { String xx = (String) event.getSource(); System.out.println(Thread.currentThread().getName() "\tsource:" xx); } }
order
排序,数值越小越先执行,默认为Integer.MAX_VALUE
async
异步执行,需要插件开启async()
或者自定义线程池。
condition
表达式条件,使用event.xxxx,event.isExec() == true
判定event的属性或者方法。
使用的场景优势
请参考详解Spring事件驱动模型
jar包下载 https://repo1.maven.org/maven2/net/dreamlu/JFinal-event/
以上版本均已上传到maven仓库~
maven
<dependency> <groupId>net.dreamlu</groupId> <artifactId>JFinal-event</artifactId> <version>3.1.3</version> </dependency>
gradle >= 5.x
api("net.dreamlu:JFinal-event:3.1.3") annotationProcessor("net.dreamlu:JFinal-event:3.1.3")
gradle < 5.x
compile("net.dreamlu:JFinal-event:3.1.3")
注意
-
3.0.0
由于使用了Annotation Processor
技术,Idea 需要开启注解处理器。 - 如果你的开发工具不支持
Annotation Processor
,3.1.3 可开启类扫描。
License
( The MIT License )
开源推荐
-
mica
Spring boot 微服务核心组件集:https://gitee.com/596392912/mica -
Avue
一款基于vue可配置化的神奇框架:https://gitee.com/smallweigit/avue -
pig
宇宙最强微服务(架构师必备):https://gitee.com/log4j/pig -
SpringBlade
完整的线上解决方案(企业开发必备):https://gitee.com/smallc/SpringBlade -
IJPay
支付SDK让支付触手可及:https://gitee.com/javen205/IJPay
微信公众号
精彩内容每日推荐!!