|
123456789101112131415161718192021222324 |
- package com.xkcoding.async;
-
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.scheduling.annotation.EnableAsync;
-
- /**
- * <p>
- * 启动器
- * </p>
- *
- * @author yangkai.shen
- * @date Created in 2018-12-29 10:28
- */
- @EnableAsync
- @SpringBootApplication
- public class SpringBootDemoAsyncApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(SpringBootDemoAsyncApplication.class, args);
- }
-
- }
-
|