You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For this repository, Spring Data REST exposes a collection resource at `/orders`. The path is derived from the uncapitalized, pluralized, simple class name of the domain class being managed. It also exposes an item resource for each of the items managed by the repository under the URI template `/orders/{id}`.
17
17
18
-
By default the HTTP methods to interact with these resources map to the according methods of `CrudRepository`. Read more on that in the sections on <<repository-resources.collection-resource,collection resources>> and <<repository-resources.item-resource,item resources>>.
18
+
By default the HTTP methods to interact with these resources map to the according methods of `CrudRepository`. Read more on that in the sections on <<repository-resources.collection-resource,collection resources>> and <<repository-resources.item-resource,item resources>>.
19
19
20
20
[[repository-resources.methods]]
21
21
=== Repository methods exposure
@@ -92,7 +92,7 @@ If the repository is a paging repository we include the pagination links if nece
92
92
93
93
===== Methods used for invocation
94
94
95
-
The following methods are used if present (decending order):
95
+
The following methods are used if present (descending order):
96
96
97
97
- `findAll(Pageable)`
98
98
- `findAll(Sort)`
@@ -134,7 +134,7 @@ The `HEAD` method returns whether the collection resource is available. It has n
134
134
135
135
===== Methods used for invocation
136
136
137
-
The following methods are used if present (decending order):
137
+
The following methods are used if present (descending order):
138
138
139
139
- `findAll(Pageable)`
140
140
- `findAll(Sort)`
@@ -153,7 +153,7 @@ This behavior can be overridden by configuring `RepositoryRestConfiguration.setR
153
153
154
154
===== Methods used for invocation
155
155
156
-
The following methods are used if present (decending order):
156
+
The following methods are used if present (descending order):
157
157
158
158
- `save(…)`
159
159
@@ -189,7 +189,7 @@ The `GET` method returns a single entity.
189
189
190
190
===== Methods used for invocation
191
191
192
-
The following methods are used if present (decending order):
192
+
The following methods are used if present (descending order):
193
193
194
194
- `findById(…)`
195
195
@@ -219,7 +219,7 @@ The `HEAD` method returns whether the item resource is available. It has no stat
219
219
220
220
===== Methods used for invocation
221
221
222
-
The following methods are used if present (decending order):
222
+
The following methods are used if present (descending order):
223
223
224
224
- `findById(…)`
225
225
@@ -236,7 +236,7 @@ This behavior can be overridden by configuring `RepositoryRestConfiguration.setR
236
236
237
237
===== Methods used for invocation
238
238
239
-
The following methods are used if present (decending order):
239
+
The following methods are used if present (descending order):
240
240
241
241
- `save(…)`
242
242
@@ -262,7 +262,7 @@ The `PATCH` method is similar to the `PUT` method but partially updates the reso
262
262
263
263
===== Methods used for invocation
264
264
265
-
The following methods are used if present (decending order):
265
+
The following methods are used if present (descending order):
0 commit comments