除此之外,其实我们可以定义一个DeadEvent来处理这种情况,它相当于是一个默认的处理方式,当没有匹配的事件类型参数的话就会默认发送一个DeadEvent事件。定义一个默认处理器。publicclassDefaultEventHandler{Subscribepublicvoidhandle(DeadEventevent){System.out.println("nosubscriber,"+event);}}给BookingService新增一个pay()支付方法,下单完了去支付,注册我们的默认事件。publicvoidpay(){业务逻辑eventBus.register...