我已经阅读了此批注的文档,但我听不懂!有人可以提供一些
说明。任何提示将不胜感激!
答案 0 :(得分:1)
@EnableAsync注释打开Spring在后台线程池中运行@Async方法的功能。此类还通过定义新bean来自定义使用的Executor。 请检查示例https://dzone.com/articles/spring-and-threads-async
因此它将启用线程池,该线程池将查找带有“ @Async”注释的方法并运行它们。
非常清楚的示例:https://dzone.com/articles/spring-boot-creating-asynchronous-methods-using-as