// Spring의 TaskExecutor 인터페이스
import org.springframework.core.task.TaskExecutor;

@Autowired
private TaskExecutor taskExecutor;

taskExecutor.execute(() -> {
    // 비동기 작업
});

AsyncTaskExecutor