diff --git a/1.Start-Spring-Boot/pom.xml b/1.Start-Spring-Boot/pom.xml
new file mode 100644
index 0000000..e9fe5c9
--- /dev/null
+++ b/1.Start-Spring-Boot/pom.xml
@@ -0,0 +1,58 @@
+
+
+ 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/1.Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java b/1.Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java
new file mode 100644
index 0000000..e584ba8
--- /dev/null
+++ b/1.Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java
@@ -0,0 +1,20 @@
+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/1.Start-Spring-Boot/src/main/resources/application.properties b/1.Start-Spring-Boot/src/main/resources/application.properties
new file mode 100644
index 0000000..e69de29
diff --git a/1.Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java b/1.Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java
new file mode 100644
index 0000000..228ddb8
--- /dev/null
+++ b/1.Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java
@@ -0,0 +1,16 @@
+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() {
+ }
+
+}
diff --git a/Start-Spring-Boot/pom.xml b/Start-Spring-Boot/pom.xml
new file mode 100644
index 0000000..e9fe5c9
--- /dev/null
+++ b/Start-Spring-Boot/pom.xml
@@ -0,0 +1,58 @@
+
+
+ 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
new file mode 100644
index 0000000..e584ba8
--- /dev/null
+++ b/Start-Spring-Boot/src/main/java/com/springboot/demo/DemoApplication.java
@@ -0,0 +1,20 @@
+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
new file mode 100644
index 0000000..e69de29
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
new file mode 100644
index 0000000..228ddb8
--- /dev/null
+++ b/Start-Spring-Boot/src/test/java/com/springboot/demo/DemoApplicationTests.java
@@ -0,0 +1,16 @@
+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() {
+ }
+
+}