mirror of
https://gitee.com/dcren/initializr.git
synced 2025-05-08 14:48:05 +08:00
15 lines
386 B
Java
15 lines
386 B
Java
![]() |
package ${packageName};
|
||
|
|
||
|
import org.springframework.bootstrap.SpringApplication;
|
||
|
import org.springframework.autoconfigure.EnableAutoConfiguration;
|
||
|
import org.springframework.context.annotation.ComponentScan;
|
||
|
|
||
|
@ComponentScan
|
||
|
@EnableAutoConfiguration
|
||
|
public class Application {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(Application.class, args);
|
||
|
}
|
||
|
}
|