我正在dropwizard中构建一个通用的异常处理程序。我想提供自定义注释作为库的一部分,只要在方法(包含注释的方法)中引发异常,它就会调用handleException方法
详细说明:
自定义注释为@ExceptionHandler
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExceptionHandler{
Class<? extends Throwable>[] exception() default {};
}
类handleException(Exception, Request)
中有一个处理程序方法ExceptionHandlerImpl
。
现在有一个带有注释
的方法的业务类@ExceptionHandler(exception = {EXC1,EXC2})
Response doPerformOperation(Request) throws EXC1,EXC2,EXC3{}
现在,只要方法EXC1
引发EXC2
和doPerformOperation
,我就想调用handleException
方法。
我尝试阅读有关AOP(AspectJ),Reflection的内容,但无法找出执行此操作的最佳方法。
答案 0 :(得分:1)
我使用aspectj解决了这个问题。我创建了界面
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface HandleExceptionSet {
HandleException[] exceptionSet();
}
其中HandleException是另一个注释。这是为了允许一系列例外。
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface HandleException {
Class<? extends CustomException> exception() default CustomException.class;
}
现在我有一个ExceptionHandler类,它有一个处理程序。要将方法绑定到此批注,我在模块中使用以下配置。
bindInterceptor(Matchers.any(), Matchers.annotatedWith(HandleExceptionSet.class), new ExceptionHandler());
我在类中使用此注释,下面是片段。
@HandleExceptionSet(exceptionSet = {
@HandleException(exception = ArithmeticException.class),
@HandleException(exception = NullPointerException.class),
@HandleException(exception = EntityNotFoundException.class)
})
public void method()throws Throwable {
throw new EntityNotFoundException("EVENT1", "ERR1", "Entity Not Found", "Right", "Wrong");
}
这对我现在很有用。 不确定,如果这是最好的方法。
有没有更好的方法来实现这一目标?