|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+## Related resources
|
|
|
2
|
+
|
|
|
3
|
+Spring Boot provides a wide range of support for various services, including most services doumented in the Spring Getting Started guides. Some of these guides are listed here.
|
|
|
4
|
+
|
|
|
5
|
+### Getting Started guides
|
|
|
6
|
+
|
|
|
7
|
+* [Building a RESTful Web Service with Spring Boot Actuator][gs-actuator-service]
|
|
|
8
|
+* [Accessing Data with JPA][gs-accessing-data-jpa]
|
|
|
9
|
+* [Creating Asynchronous Methods][gs-async-method]
|
|
|
10
|
+* [Creating a Batch Service][gs-batch-processing]
|
|
|
11
|
+* [Securing a Web Application][gs-securing-web]
|
|
|
12
|
+* [Uploading a File][gs-uploading-files]
|
|
|
13
|
+* [Converting a Spring Boot JAR-based application to a WAR][gs-convert-jar-to-war]
|
|
|
14
|
+
|
|
|
15
|
+[gs-actuator-service]: /guides/gs/actuator-service
|
|
|
16
|
+[gs-accessing-data-jpa]: /guides/gs/accessing-data-jpa
|
|
|
17
|
+[gs-async-method]: /guides/gs/async-method
|
|
|
18
|
+[gs-batch-processing]: /guides/gs/batch-processing
|
|
|
19
|
+[gs-securing-web]: /guides/gs/securing-web
|
|
|
20
|
+[gs-uploading-files]: /guides/gs/uploading-files
|
|
|
21
|
+[gs-convert-jar-to-war]: /guides/gs/convert-jar-to-war
|
|
|
22
|
+
|
|
|
23
|
+### Tutorials
|
|
|
24
|
+
|
|
|
25
|
+* [Designing and Implementing RESTful Web Services with Spring][tut-rest]
|
|
|
26
|
+
|
|
|
27
|
+[tut-rest]: /guides/tutorials/rest
|
|
|
28
|
+
|
|
|
29
|
+### Concepts and technologies
|
|
|
30
|
+
|
|
|
31
|
+* [REST][u-rest]
|
|
|
32
|
+* [JSON][u-json]
|
|
|
33
|
+
|
|
|
34
|
+[u-rest]: /understanding/REST
|
|
|
35
|
+[u-json]: /understanding/JSON
|