Greg Turnquist 13 лет назад
Родитель
Сommit
7236c63234
2 измененных файлов: 5 добавлений и 3 удалений
  1. 2
    1
      README.ftl.md
  2. 3
    2
      README.md

+ 2
- 1
README.ftl.md Просмотреть файл

@@ -1,9 +1,10 @@
1 1
 <#assign project_id="gs-rest-service">
2
+This guide walks you through creating a "hello world" [RESTful web service][u-rest] with Spring.
2 3
 
3 4
 What you'll build
4 5
 -----------------
5 6
 
6
-This guide walks you through creating a "hello world" [RESTful web service][u-rest] with Spring. The service will accept HTTP GET requests at:
7
+The service will accept HTTP GET requests at:
7 8
 
8 9
     http://localhost:8080/greeting
9 10
 

+ 3
- 2
README.md Просмотреть файл

@@ -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