Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 02e6ec0

Browse files
committed
Fixed link
1 parent 368fb87 commit 02e6ec0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

SUMMARY.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
- [5、了解 Spring Boot 的新特性](pages/boot-documentation.md#_learning_about_spring_boot_features)
1010
- [6、生产环境](pages/boot-documentation.md#_moving_to_production)
1111
- [7、高级内容](pages/boot-documentation.md#_advanced_topics)
12-
- [II、入门](pages/boot-documentation.md)
13-
- [8、Spring Boot 简介](pages/boot-documentation.md#getting-started-introducing-spring-boot)
14-
- [9、系统要求](pages/boot-documentation.md#getting-started-system-requirements)
15-
- [9.1、Servlet 容器](pages/boot-documentation.md#_servlet_containers)
16-
- [10、安装 Spring Boot](pages/boot-documentation.md#getting-started-installing-spring-boot)
17-
- [10.1、针对 Java 开发人员的安装说明](pages/boot-documentation.md#getting-started-installation-instructions-for-java)
18-
- [10.1.1、Maven 安装](pages/boot-documentation.md#getting-started-maven-installation)
19-
- [10.1.2、Gradle 安装](pages/boot-documentation.md)
12+
- [II、入门](pages/getting-started.md)
13+
- [8、Spring Boot 简介](pages/getting-started.md#getting-started-introducing-spring-boot)
14+
- [9、系统要求](pages/getting-started.md#getting-started-system-requirements)
15+
- [9.1、Servlet 容器](pages/getting-started.md#_servlet_containers)
16+
- [10、安装 Spring Boot](pages/getting-started.md#getting-started-installing-spring-boot)
17+
- [10.1、针对 Java 开发人员的安装说明](pages/getting-started.md#getting-started-installation-instructions-for-java)
18+
- [10.1.1、Maven 安装](pages/getting-started.md#getting-started-maven-installation)
19+
- [10.1.2、Gradle 安装](pages/getting-started.md)
2020
- 10.2、安装 Spring Boot CLI
2121
- 10.2.1、手动安装
2222
- 10.2.2、使用 SDKMAN! 安装

pages/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<a id="boot-documentation"></a>
1+
<a id="getting-started"></a>
22
# II、入门
33

44
如果您是刚开始使用 Spring Boot,或者对 Spring 有点印象,那么这部分内容是为您准备的!在这里我们将给出基本的“是什么?”、“怎么做?”、“为什么?”这类问题的答案。这是一份友好的 Spring Boot 简介和安装说明。当我们在讨论一些核心原理之后,我们将构建第一个 Spring Boot 应用。
@@ -54,7 +54,7 @@ $ java -version
5454

5555
**提示**
5656

57-
虽然 Spring Boot 支持 Java 1.6,但是如果可以,您应该考虑使用最新的 Java 版本。
57+
> 虽然 Spring Boot 支持 Java 1.6,但是如果可以,您应该考虑使用最新的 Java 版本。
5858
5959
<a id="getting-started-installation-instructions-for-java"></a>
6060
### 10.1、针对 Java 开发人员的安装说明
@@ -70,7 +70,7 @@ Spring Boot 兼容 Apache Maven 3.2 或更高版本。如果您还没有安装 M
7070

7171
**提示**
7272

73-
在许多操作系统上,可以通过软件包管理器来安装 Maven。如果您是 OSX Homebrew 用户,请尝试使用 `brew install maven`。Ubuntu 用户可以运行 `sudo apt-get install maven`
73+
> 在许多操作系统上,可以通过软件包管理器来安装 Maven。如果您是 OSX Homebrew 用户,请尝试使用 `brew install maven`。Ubuntu 用户可以运行 `sudo apt-get install maven`
7474
7575
Spring Boot 依赖使用到了 `org.springframework.boot` `groupId`。通常,您的 Maven POM 文件将从 `spring-boot-starter-parent` 项目继承,并声明一个或多个 [Starter](using-boot-starter.md) 依赖。Spring Boot 还提供了一个可选的 [Maven 插件](#build-tool-plugins-maven-plugin)来创建可执行 jar。
7676

@@ -116,6 +116,6 @@ Spring Boot 依赖使用到了 `org.springframework.boot` `groupId`。通常,
116116

117117
**提示**
118118

119-
`spring-boot-starter-parent` 是一个使用 Spring Boot 的好方式,但它并不是任何时候都适用。有时您可能需要继承不同的父 POM,或者您不喜欢我们的默认配置。请参见[第 13.2.2 节, “使用不带父 POM 的 Spring Boot”](#using-boot-maven-without-a-parent) 作为的替代方案,其使用了 `import` Scope。
119+
> `spring-boot-starter-parent` 是一个使用 Spring Boot 的好方式,但它并不是任何时候都适用。有时您可能需要继承不同的父 POM,或者您不喜欢我们的默认配置。请参见[第 13.2.2 节, “使用不带父 POM 的 Spring Boot”](#using-boot-maven-without-a-parent) 作为的替代方案,其使用了 `import` Scope。
120120
121121

0 commit comments

Comments
 (0)