Async注解
作用标注在方法上,当调用该方法时,spring会启用一个线程去执行该方法
使用
启用@Async注解
在某个配置类上比如启动类上标注@EnableAsync注解
12345@SpringBootTest@EnableAsyncpublic class AsyncTest { }
定义接口用于让spring注入
12345678/** * @author boranget * @date 2023/11/29 */public interface IAsyncMethod { void A(); void B();}
实现类
12345678910111213141516171819202122package com.example.springweb;import org.springframework.scheduling.annotation.Async;import org.springframework.stereotype.Service;/** * @author boranget * @date ...