2 Star 19 Fork 0

玄辉 / web-spring-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
event.md 675 Bytes
一键复制 编辑 原始数据 按行查看 历史

** event消息推送 调用**

使用详情

web:
  event:
    enabled: true

###发送消息

类注入
  @Autowired
  private EventPublisher eventPublisher;

   @Test
      public void test() {
          eventPublisher.publishEvent(TEST_EVENT_SERVICE, "【test-发送消息】");
      }

###接收消息 @EventListener(name = "TEST_EVENT_SERVICE") public void listLocalSync(String message) { System.out.println("收到Sync:" + message); }

 @EventListener(name = "TEST_EVENT_SERVICE", eventType = EventType.SYNC)
 public void listLocalAsync(String message) {
     System.out.println("收到Async:" + message);
 }

Java
1
https://gitee.com/xphsc/web-spring-boot.git
git@gitee.com:xphsc/web-spring-boot.git
xphsc
web-spring-boot
web-spring-boot
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891