ソースを参照

Replace /content with / in GSG links

[Delivers #54822628]
Chris Beams 13 年 前
コミット
2899952ffa
共有1 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 3
    3
      README.md

+ 3
- 3
README.md ファイルの表示

@@ -57,7 +57,7 @@ To **skip the basics**, do the following:
57 57
 Set up the project
58 58
 ------------------
59 59
 
60
-First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](/guides/gs/maven/content) or [Building Java Projects with Gradle](/guides/gs/gradle/content).
60
+First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](/guides/gs/maven/) or [Building Java Projects with Gradle](/guides/gs/gradle/).
61 61
 
62 62
 ### Create the directory structure
63 63
 
@@ -115,7 +115,7 @@ In a project directory of your choosing, create the following subdirectory struc
115 115
 </project>
116 116
 ```
117 117
 
118
-This guide is using [Spring Boot's starter POMs](/guides/gs/spring-boot/content).
118
+This guide is using [Spring Boot's starter POMs](/guides/gs/spring-boot/).
119 119
 
120 120
 Note to experienced Maven users who are unaccustomed to using an external parent project: you can take it out later, it's just there to reduce the amount of code you have to write to get started.
121 121
 
@@ -282,7 +282,7 @@ $ mvn package
282 282
 
283 283
 [spring-boot-maven-plugin]: https://github.com/SpringSource/spring-boot/tree/master/spring-boot-maven-plugin
284 284
 
285
-> **Note:** The procedure above will create a runnable JAR. You can also opt to [build a classic WAR file](/guides/gs/convert-jar-to-war/content) instead.
285
+> **Note:** The procedure above will create a runnable JAR. You can also opt to [build a classic WAR file](/guides/gs/convert-jar-to-war/) instead.
286 286
 
287 287
 Run the service
288 288
 -------------------