parent
9957a3ab28
commit
23ee06a667
@ -0,0 +1,13 @@
|
||||
package com.imut.springbootquickstart;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class SpringbootQuickstartApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SpringbootQuickstartApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
spring:
|
||||
application:
|
||||
name: "springboot-quickstart"
|
@ -0,0 +1,13 @@
|
||||
package com.imut.springbootquickstart;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class SpringbootQuickstartApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue