mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-20 18:48:13 +08:00
13 lines
299 B
Plaintext
13 lines
299 B
Plaintext
![]() |
package com.example;
|
||
|
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
||
|
@SpringBootApplication
|
||
|
public class DemoApplication {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(DemoApplication.class, args);
|
||
|
}
|
||
|
}
|