Pārlūkot izejas kodu

Replace understanding docs with macros

Greg Turnquist 13 gadus atpakaļ
vecāks
revīzija
ca7a329a18
2 mainītis faili ar 36 papildinājumiem un 3 dzēšanām
  1. 3
    3
      SIDEBAR.ftl.md
  2. 33
    0
      SIDEBAR.md

+ 3
- 3
SIDEBAR.ftl.md Parādīt failu

@@ -28,6 +28,6 @@ There's more to building RESTful web services than is covered here. You can cont
28 28
 * [JSON][u-json]
29 29
 * [View Templates][u-view-templates]
30 30
 
31
-[u-rest]: /understanding/REST
32
-[u-json]: /understanding/JSON
33
-[u-view-templates]: /understanding/view-templates
31
+<@u_rest/>
32
+<@u_json/>
33
+<@u_view_templates/>

+ 33
- 0
SIDEBAR.md Parādīt failu

@@ -0,0 +1,33 @@
1
+## Related Resources
2
+
3
+There's more to building RESTful web services than is covered here. You can continue your exploration of Spring and REST with the following resources.
4
+
5
+### Getting Started Guides
6
+
7
+* [Consuming a RESTful Web Service][gs-consuming-rest]
8
+* [Building a Hypermedia-Driven REST Web Service][gs-rest-hateoas]
9
+* [Consuming REST Services with Spring for Android][gs-consuming-rest-android]
10
+* [Consuming XML from a REST Web Service with Spring for Android][gs-consuming-rest-xml-android]
11
+* [Building a RESTful Web Service with Spring Bootstrap Actuator][gs-actuator-service]
12
+
13
+[gs-consuming-rest]: /guides/gs/consuming-rest/
14
+[gs-consuming-rest-android]: /guides/gs/consuming-rest-android/
15
+[gs-rest-hateoas]: /guides/gs/rest-hateoas/
16
+[gs-consuming-rest-xml-android]: /guides/gs/consuming-rest-xml-android/
17
+[gs-actuator-service]: /guides/gs/actuator-service/
18
+
19
+### Tutorials
20
+
21
+* [Designing and Implementing RESTful Web Services with Spring][tut-rest]
22
+
23
+[tut-rest]: /guides/tutorials/rest
24
+
25
+### Concepts and Technologies
26
+
27
+* [REST][u-rest]
28
+* [JSON][u-json]
29
+* [View Templates][u-view-templates]
30
+
31
+[u-rest]: /understanding/REST
32
+[u-json]: /understanding/JSON
33
+[u-view-templates]: /understanding/view-templates