Files
spring-boot-threadpool-demo/src/main/java/cn/hezhaohui/threadpool/ThreadPoolApplication.java
T

12 lines
334 B
Java
Raw Normal View History

2025-11-10 13:30:45 +08:00
package cn.hezhaohui.threadpool;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ThreadPoolApplication {
public static void main(String[] args) {
SpringApplication.run(ThreadPoolApplication.class, args);
}
}