简单一句话吧,就是使用当前线程执行任务,并不会开启另外的线程执行,任务执行完毕之前会阻塞main线程,看他的名字见名知意,基本使用方法如下,
import org.springframework.core.task.SyncTaskExecutor;
import org.springframework.core.task.TaskExecutor;
public class SyncTaskExecutorExample {
public static void main(String[] args) {
// 创建 SyncTaskExecutor 对象
TaskExecutor taskExecutor = new SyncTaskExecutor();
// 执行任务
taskExecutor.execute(() -> {
System.out.println("Task is running in the current thread.");
// 在这里编写具体的任务逻辑
});
// 任务会在当前线程中同步执行,这里不需要额外的等待操作
System.out.println("Main thread continues...");
}
}
标签:System,任务,线程,关于,TaskExecutor,SyncTaskExecutor,执行
From: https://www.cnblogs.com/jintaocode/p/17579101.html