mirror of
https://gitee.com/yudaocode/SpringBoot-Labs.git
synced 2026-09-05 23:07:23 +08:00
13 lines
297 B
Java
13 lines
297 B
Java
package lab01;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class Application {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(Application.class, args);
|
|
}
|
|
|
|
} |