发布时间:2022-08-19 12:50
有一点很重要(这是我放在最前面的原因):调用被@Async注解的方法时,调用方法不能与被调用方法放在同一类中,否则注解不生效
因此,我们应该这样做:
一个类中实现被调用方法,另一个类进行调用
在启动类上加@EnableAsync和@EnableScheduling
import com.spring4all.mongodb.EnableMongoPlus;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@EnableAsync
@EnableScheduling
@EnableTransactionManagement(proxyTargetClass = true)
@EnableMongoPlus
@SpringBootApplication
public class MpfcontrolApplication {
public static void main(String[] args) {
// SpringApplication.run(MpfcontrolApplication.class, args);
new SpringApplicationBuilder(MpfcontrolApplication.class).headless(false).run(args);
ViewStart.run();
}
}
使用 @Scheduled(fixedRate=10000)实现定时间间隔调用(单位毫秒)
//定时调用批处理方法
@Scheduled(fixedRate=10000)
public void doTimer(){
// System.out.println("定时执行");
JSONObject json=new JSONObject();
batchAddSystemLog(json,2);
}