diff --git a/springboot-web-quickstart/pom.xml b/springboot-web-quickstart/pom.xml
new file mode 100644
index 0000000..2936ef9
--- /dev/null
+++ b/springboot-web-quickstart/pom.xml
@@ -0,0 +1,75 @@
+
+
+ 4.0.0
+ com.inmind
+ springboot-web-quickstart
+ 0.0.1-SNAPSHOT
+ springboot-web-quickstart
+ springboot-web-quickstart
+
+ 11
+ UTF-8
+ UTF-8
+ 2.7.6
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-dependencies
+ ${spring-boot.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.8.1
+
+ 11
+ 11
+ UTF-8
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+ ${spring-boot.version}
+
+ com.inmind.SpringbootWebQuickstartApplication
+ true
+
+
+
+ repackage
+
+ repackage
+
+
+
+
+
+
+
+
diff --git a/springboot-web-quickstart/src/main/java/com/inmind/SpringbootWebQuickstartApplication.java b/springboot-web-quickstart/src/main/java/com/inmind/SpringbootWebQuickstartApplication.java
new file mode 100644
index 0000000..cf59f60
--- /dev/null
+++ b/springboot-web-quickstart/src/main/java/com/inmind/SpringbootWebQuickstartApplication.java
@@ -0,0 +1,13 @@
+package com.inmind;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication//表示默认启动项
+public class SpringbootWebQuickstartApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringbootWebQuickstartApplication.class, args);
+ }
+
+}
diff --git a/springboot-web-quickstart/src/main/java/com/inmind/controller/HelloController.java b/springboot-web-quickstart/src/main/java/com/inmind/controller/HelloController.java
new file mode 100644
index 0000000..92dfa5a
--- /dev/null
+++ b/springboot-web-quickstart/src/main/java/com/inmind/controller/HelloController.java
@@ -0,0 +1,17 @@
+package com.inmind.controller;
+
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+//当前类是请求处理类
+@RestController
+public class HelloController {
+
+ //接收到请求资源路径为/hello,就由该方法处理请求
+ @RequestMapping("/hello")
+ public String hello(){
+ String s = "hello world";
+ System.out.println(s);
+ return s;
+ }
+}
diff --git a/springboot-web-quickstart/src/main/resources/application.properties b/springboot-web-quickstart/src/main/resources/application.properties
new file mode 100644
index 0000000..e52b498
--- /dev/null
+++ b/springboot-web-quickstart/src/main/resources/application.properties
@@ -0,0 +1,3 @@
+# 应用服务 WEB 访问端口
+server.port=8080
+
diff --git a/springboot-web-quickstart/src/main/resources/static/index.html b/springboot-web-quickstart/src/main/resources/static/index.html
new file mode 100644
index 0000000..89bb8ba
--- /dev/null
+++ b/springboot-web-quickstart/src/main/resources/static/index.html
@@ -0,0 +1,6 @@
+
+
+hello word!!!
+this is a html page
+
+
\ No newline at end of file
diff --git a/springboot-web-quickstart/src/test/java/com/inmind/SpringbootWebQuickstartApplicationTests.java b/springboot-web-quickstart/src/test/java/com/inmind/SpringbootWebQuickstartApplicationTests.java
new file mode 100644
index 0000000..265a020
--- /dev/null
+++ b/springboot-web-quickstart/src/test/java/com/inmind/SpringbootWebQuickstartApplicationTests.java
@@ -0,0 +1,13 @@
+package com.inmind;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class SpringbootWebQuickstartApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}