Spring @ExceptionHandler和多线程

Spring @ExceptionHandler和多线程,第1张

Spring @ExceptionHandler和多线程

如果启用了@Async,则默认的异常处理机制不起作用。要处理使用@Async注释的方法引发的异常,您需要实现一个自定义AsyncExceptionHandler。

public class AsyncExceptionHandler implements AsyncUncaughtExceptionHandler{    @Override    public void handleUncaughtException(Throwable ex, Method method, Object... params) {        // Here goes your exception handling logic.    }}

现在,您需要在Application类中将此customExceptionHandler配置为

@EnableAsyncpublic class Application implements AsyncConfigurer {     @Override Executor getAsyncExecutor(){      // your ThreadPoolTaskExecutor configuration goes here. }@Overridepublic AsyncUncaughExceptionHandler getAsyncUncaughtExceptionHandler(){   return new AsyncExceptionHandler();}

注意:确保为了使AsyncExceptionHandler工作,您需要在Application类中实现AsyncConfigurer。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4979957.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存