gpt4 book ai didi

java - 在 Google Guava EventBus 中引发异常

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:38:43 26 4
gpt4 key购买 nike

Google Guava EventBus 吞下异常并记录它们。

我写了一个非常简单的应用程序来解释我的方法:

public class SimplePrinterEvent {
@Subscribe
public void doPrint(String s) {
int a = 2/0; //This is to fire an exception
System.out.println("printing : " + s );
}
}

演示

public class SimplePrinterEventDemo {
public static void main(String[] args) {

EventBus eventBus = new EventBus();
eventBus.register(new SimplePrinterEvent());
try{
eventBus.post("This is going to print");
}
catch(Exception e){
System.out.println("Error Occured!");
}
}
}

这永远不会到达 catch block !

所以我添加了一个 SubscriberExceptionHandler 并覆盖了 handleException()。

EventBus eventBus = new EventBus(new SubscriberExceptionHandler() {

@Override
public void handleException(Throwable exception,
SubscriberExceptionContext context) {
System.out.println("Handling Error..yes I can do something here..");
throw new RuntimeException(exception);
}
});

它允许我在处理程序中处理异常,但我的要求是将该异常带到顶层,我在那里处理它们。

编辑:我在一些网站上找到的旧解决方案。 (这适用于 Guava v18)

public class CustomEventBus extends EventBus {
@Override
void dispatch(Object event, EventSubscriber wrapper) {
try {
wrapper.handleEvent(event);
} catch (InvocationTargetException cause) {
Throwables.propagate(Throwables.getRootCause(cause));
}
}
}

最佳答案

以下技巧对我有用:

最新的 EventBus 类有一个名为 handleSubscriberException() 的方法,您需要在扩展的 EventBus 类中重写该方法:(这里我包括了两种解决方案,只有一种适用于您的版本)

public class CustomEventBus extends EventBus {
//If version 18 or bellow
@Override
void dispatch(Object event, EventSubscriber wrapper) {
try {
wrapper.handleEvent(event);
} catch (InvocationTargetException cause) {
Throwables.propagate(Throwables.getRootCause(cause));
}
}
//If version 19
@Override
public void handleSubscriberException(Throwable e, SubscriberExceptionContext context) {
Throwables.propagate(Throwables.getRootCause(e));
}
}

关于java - 在 Google Guava EventBus 中引发异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37130746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com