Parcourir la source

Update guide to include like to gs-sts

Greg Turnquist il y a 13 ans
Parent
révision
bf2d18885f
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4
    2
      README.md

+ 4
- 2
README.md Voir le fichier

@@ -11,10 +11,12 @@ What you'll need
11 11
  - A favorite text editor or IDE
12 12
  - [JDK 6][jdk] or later
13 13
  - [Gradle 1.7+][gradle] or [Maven 3.0+][mvn]
14
+ - You can also import the code from this guide as well as view the web page directly into [Spring Tool Suite (STS)][gs-sts] and work your way through it from there.
14 15
 
15 16
 [jdk]: http://www.oracle.com/technetwork/java/javase/downloads/index.html
16 17
 [gradle]: http://www.gradle.org/
17 18
 [mvn]: http://maven.apache.org/download.cgi
19
+[gs-sts]: /guides/gs/sts
18 20
 
19 21
 How to complete this guide
20 22
 --------------------------
@@ -52,7 +54,7 @@ In a project directory of your choosing, create the following subdirectory struc
52 54
 
53 55
 
54 56
 ### Create a Gradle build file
55
-Below is the [initial Gradle build file](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/build.gradle). But you can also use Maven. The pom.xml file is included [right here](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/pom.xml).
57
+Below is the [initial Gradle build file](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/build.gradle). But you can also use Maven. The pom.xml file is included [right here](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/pom.xml). If you are using [Spring Tool Suite (STS)][gs-sts], you can import the guide directly.
56 58
 
57 59
 `build.gradle`
58 60
 ```gradle
@@ -91,7 +93,7 @@ task wrapper(type: Wrapper) {
91 93
 }
92 94
 ```
93 95
     
94
-    
96
+[gs-sts]: /guides/gs/sts    
95 97
 
96 98
 Learn what you can do with Spring Boot
97 99
 --------------------------------------