版权声明:本文为博主原创文章,无需授权即可转载,甚至无需保留以上版权声明,转载时请务必注明作者。
https://blog.csdn.net/weixin_43453386/article/details/106209402
同步调用 :整个处理过程按顺序执行,每一步必须等到上一步执行完后才能执行
异步调用 :只是发送了调用的指令,调用者无需等待被调用的方法完全执行完毕,继续执行下面的流程。
一、开启异步:@EnableAsync
@EnableAsync
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
二、实现异步:@Async
1、Service代码示例
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Service;
import java.util.concurrent.Future;
/**
* <p>
* 异步 服务类
* </p>
*
* @author xiaoxian
* @since 2020-05-19
*/
@Service
public class AsyncService