|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+This guide walks you through creating a "hello world" [RESTful web service][u-rest] with Spring.
|
|
1
|
2
|
|
|
2
|
3
|
What you'll build
|
|
3
|
4
|
-----------------
|
|
4
|
5
|
|
|
5
|
|
-This guide walks you through creating a "hello world" [RESTful web service][u-rest] with Spring. The service will accept HTTP GET requests at:
|
|
|
6
|
+The service will accept HTTP GET requests at:
|
|
6
|
7
|
|
|
7
|
8
|
http://localhost:8080/greeting
|
|
8
|
9
|
|
|
|
@@ -57,7 +58,7 @@ To **skip the basics**, do the following:
|
|
57
|
58
|
Set up the project
|
|
58
|
59
|
------------------
|
|
59
|
60
|
|
|
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
|
+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
|
62
|
|
|
62
|
63
|
### Create the directory structure
|
|
63
|
64
|
|