1.概述
当单线程执行不够时,我们可以使用org.springframework.scheduling.annotation包中的注释。
在本快速教程中,我们将探讨Spring Scheduling Annotations。
2. @EnableAsync
通过这个注释,我们可以在Spring中启用异步功能。
我们必须在@Configuration中使用它:
@Configuration
@EnableAsync
class VehicleFactoryConfig {}
现在,我们启用了异步调用,我们可以使用@Async来定义支持它的方法。