diff --git a/spring-boot-demo-helloworld/README.md b/spring-boot-demo-helloworld/README.md
new file mode 100644
index 0000000..82b268e
--- /dev/null
+++ b/spring-boot-demo-helloworld/README.md
@@ -0,0 +1,113 @@
+# spring-boot-demo-helloworld
+
+## pom.xml
+```xml
+
+
+ * SpringBoot启动类 + *
+ * + * @package: com.xkcoding.helloworld + * @description: SpringBoot启动类 + * @author: yangkai.shen + * @date: Created in 2018/9/28 2:49 PM + * @copyright: Copyright (c) + * @version: V1.0 + * @modified: yangkai.shen + */ +@SpringBootApplication +@RestController +public class SpringBootDemoHelloworldApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringBootDemoHelloworldApplication.class, args); + } + + /** + * Hello,World + * + * @param who 参数,非必须 + * @return Hello, ${who} + */ + @GetMapping("/hello") + public String sayHello(@RequestParam(required = false, name = "who") String who) { + if (StrUtil.isBlank(who)) { + who = "World"; + } + return StrUtil.format("Hello, {}!", who); + } +} + +``` + +## application.yml + +```yaml +server: + port: 8080 + servlet: + context-path: /demo +``` +