|
|
@@ -31,10 +31,12 @@ What you'll need
|
|
31
|
31
|
- A favorite text editor or IDE
|
|
32
|
32
|
- [JDK 6][jdk] or later
|
|
33
|
33
|
- [Gradle 1.7+][gradle] or [Maven 3.0+][mvn]
|
|
|
34
|
+ - 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.
|
|
34
|
35
|
|
|
35
|
36
|
[jdk]: http://www.oracle.com/technetwork/java/javase/downloads/index.html
|
|
36
|
37
|
[gradle]: http://www.gradle.org/
|
|
37
|
38
|
[mvn]: http://maven.apache.org/download.cgi
|
|
|
39
|
+[gs-sts]: /guides/gs/sts
|
|
38
|
40
|
|
|
39
|
41
|
|
|
40
|
42
|
How to complete this guide
|
|
|
@@ -73,7 +75,7 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
73
|
75
|
|
|
74
|
76
|
|
|
75
|
77
|
### Create a Gradle build file
|
|
76
|
|
-Below is the [initial Gradle build file](https://github.com/spring-guides/gs-rest-service/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-rest-service/blob/master/initial/pom.xml).
|
|
|
78
|
+Below is the [initial Gradle build file](https://github.com/spring-guides/gs-rest-service/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-rest-service/blob/master/initial/pom.xml). If you are using [Spring Tool Suite (STS)][gs-sts], you can import the guide directly.
|
|
77
|
79
|
|
|
78
|
80
|
`build.gradle`
|
|
79
|
81
|
```gradle
|
|
|
@@ -109,7 +111,7 @@ task wrapper(type: Wrapper) {
|
|
109
|
111
|
}
|
|
110
|
112
|
```
|
|
111
|
113
|
|
|
112
|
|
-
|
|
|
114
|
+[gs-sts]: /guides/gs/sts
|
|
113
|
115
|
|
|
114
|
116
|
This guide is using [Spring Boot's starter POMs](/guides/gs/spring-boot/).
|
|
115
|
117
|
|