标签: spring spring-boot
我想自定义AsyncUncaughtExceptionHandler,但我不知道如何做到这一点。如何覆盖默认的SimpleUncaughtExceptionHandler配置?
AsyncUncaughtExceptionHandler
SimpleUncaughtExceptionHandler
答案 0 :(得分:1)
in the Javadoc of @EnableAsync
@EnableAsync
您需要实现AsyncConfigurer来自定义异步处理的工作方式。
AsyncConfigurer