提交 9573090e 编写于 作者: 小傅哥's avatar 小傅哥

小傅哥,feat:Guava 工具对象使用

上级 da249b1a
......@@ -8,6 +8,8 @@ import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.Weigher;
import com.google.common.collect.ImmutableList;
import com.google.common.eventbus.EventBus;
import com.google.common.eventbus.Subscribe;
import com.google.common.hash.BloomFilter;
import com.google.common.hash.Funnels;
import com.google.common.net.InternetDomainName;
......@@ -176,4 +178,21 @@ public class ApiTest {
log.info("测试结果 - isOverridable:{}", invokable.isOverridable());
}
@Test
public void test_eventbus() {
EventBus eventBus = new EventBus();
eventBus.register(new Listener());
// 可以由其他服务推送消息,之后就可以在监听中收到了
eventBus.post("消息总线,订单号:100001");
}
static class Listener {
@Subscribe
public void handleEvent(String orderId) {
log.info("测试结果:{}", orderId);
}
}
}
package cn.bugstack.xfg.dev.tech.infrastructure.listener;
/**
* @author Fuzhengwei bugstack.cn @小傅哥
* @description
* @create 2023-10-08 16:10
*/
public class XxxListener {
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册