From b10b771ed1a76cf81c24ce101f2977d4ffc3a366 Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Sat, 9 Jan 2021 09:56:10 -0500 Subject: [PATCH] =?UTF-8?q?Spring=20Boot=20=E6=96=87=E6=A1=A3=E7=9A=84?= =?UTF-8?q?=E7=AC=AC=E4=B8=80=E4=B8=AA=E7=A4=BA=E4=BE=8B=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring-boot-modules/spring-boot-1st/README.md | 9 +++ spring-boot-modules/spring-boot-1st/pom.xml | 61 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 spring-boot-modules/spring-boot-1st/README.md create mode 100644 spring-boot-modules/spring-boot-1st/pom.xml diff --git a/spring-boot-modules/spring-boot-1st/README.md b/spring-boot-modules/spring-boot-1st/README.md new file mode 100644 index 0000000000..5eccfad9cf --- /dev/null +++ b/spring-boot-modules/spring-boot-1st/README.md @@ -0,0 +1,9 @@ +## Spring Boot 文档示例程序 + +这个文档为按照官方的 Spring Boot 文档创建的第一个示例程序 + +### 相关文档: + +- [Spring Boot 2.4 示例创建 POM 文件](https://www.ossez.com/t/spring-boot-2-4-pom/1089) +- [Spring Boot 2.4 第一个示例程序添加 Classpath 依赖](https://www.ossez.com/t/spring-boot-2-4-classpath/1098) + diff --git a/spring-boot-modules/spring-boot-1st/pom.xml b/spring-boot-modules/spring-boot-1st/pom.xml new file mode 100644 index 0000000000..11293eeef6 --- /dev/null +++ b/spring-boot-modules/spring-boot-1st/pom.xml @@ -0,0 +1,61 @@ + + + 4.0.0 + + com.example + myproject + 0.0.1-SNAPSHOT + + + org.springframework.boot + spring-boot-starter-parent + 2.5.0-SNAPSHOT + + + + + org.springframework.boot + spring-boot-starter-web + + + + + + + + + + + + + + + + + + + + + spring-snapshots + https://repo.spring.io/snapshot + + true + + + + spring-milestones + https://repo.spring.io/milestone + + + + + spring-snapshots + https://repo.spring.io/snapshot + + + spring-milestones + https://repo.spring.io/milestone + + + \ No newline at end of file