diff --git a/Start-Spring-Boot/pom.xml b/Start-Spring-Boot/pom.xml deleted file mode 100644 index e9fe5c9..0000000 --- a/Start-Spring-Boot/pom.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - 4.0.0 - - com.springboot - Start-Spring-Boot - 0.0.1-SNAPSHOT - jar - - Start-Spring-Boot - Demo project for Spring Boot - - - org.springframework.boot - spring-boot-starter-parent - 1.5.9.RELEASE - - - - - UTF-8 - UTF-8 - 1.7 - - - - - org.springframework.boot - spring-boot-starter-web - - - - org.springframework.boot - spring-boot-starter-test - test - - - - - - nexus-aliyun - Nexus aliyun - http://maven.aliyun.com/nexus/content/groups/public - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - - diff --git a/Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java b/Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java deleted file mode 100644 index e584ba8..0000000 --- a/Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.springboot.demo; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -@RestController -@SpringBootApplication -public class DemoApplication { - - @RequestMapping("/") - String index() { - return "hello spring boot"; - } - - public static void main(String[] args) { - SpringApplication.run(DemoApplication.class, args); - } -} diff --git a/Start-Spring-Boot/src/main/resources/application.properties b/Start-Spring-Boot/src/main/resources/application.properties deleted file mode 100644 index e69de29..0000000 diff --git a/Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java b/Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java deleted file mode 100644 index 228ddb8..0000000 --- a/Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.springboot.demo; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest -public class DemoApplicationTests { - - @Test - public void contextLoads() { - } - -}