Skip to content

Commit adc66d0

Browse files
committed
Upgrade to spring-boot 3.0.0-M2
1 parent 022595f commit adc66d0

File tree

6 files changed

+46
-1655
lines changed

6 files changed

+46
-1655
lines changed

springdoc-openapi-tests/springdoc-openapi-data-rest-tests/src/test/resources/results/app11.json

Lines changed: 2 additions & 195 deletions
Original file line numberDiff line numberDiff line change
@@ -76,35 +76,6 @@
7676
}
7777
}
7878
}
79-
},
80-
"post": {
81-
"tags": [
82-
"person-entity-controller"
83-
],
84-
"description": "create-person",
85-
"operationId": "postCollectionResource-person-post",
86-
"requestBody": {
87-
"content": {
88-
"application/json": {
89-
"schema": {
90-
"$ref": "#/components/schemas/PersonRequestBody"
91-
}
92-
}
93-
},
94-
"required": true
95-
},
96-
"responses": {
97-
"201": {
98-
"description": "Created",
99-
"content": {
100-
"application/hal+json": {
101-
"schema": {
102-
"$ref": "#/components/schemas/EntityModelPerson"
103-
}
104-
}
105-
}
106-
}
107-
}
10879
}
10980
},
11081
"/peopleme/search/findByLastName": {
@@ -139,165 +110,12 @@
139110
}
140111
}
141112
},
142-
"/peopleme/{id}": {
143-
"get": {
144-
"tags": [
145-
"person-entity-controller"
146-
],
147-
"description": "get-person",
148-
"operationId": "getItemResource-person-get",
149-
"parameters": [
150-
{
151-
"name": "id",
152-
"in": "path",
153-
"required": true,
154-
"schema": {
155-
"type": "string"
156-
}
157-
}
158-
],
159-
"responses": {
160-
"200": {
161-
"description": "OK",
162-
"content": {
163-
"application/hal+json": {
164-
"schema": {
165-
"$ref": "#/components/schemas/EntityModelPerson"
166-
}
167-
}
168-
}
169-
},
170-
"404": {
171-
"description": "Not Found"
172-
}
173-
}
174-
},
175-
"put": {
176-
"tags": [
177-
"person-entity-controller"
178-
],
179-
"description": "update-person",
180-
"operationId": "putItemResource-person-put",
181-
"parameters": [
182-
{
183-
"name": "id",
184-
"in": "path",
185-
"required": true,
186-
"schema": {
187-
"type": "string"
188-
}
189-
}
190-
],
191-
"requestBody": {
192-
"content": {
193-
"application/json": {
194-
"schema": {
195-
"$ref": "#/components/schemas/PersonRequestBody"
196-
}
197-
}
198-
},
199-
"required": true
200-
},
201-
"responses": {
202-
"200": {
203-
"description": "OK",
204-
"content": {
205-
"application/hal+json": {
206-
"schema": {
207-
"$ref": "#/components/schemas/EntityModelPerson"
208-
}
209-
}
210-
}
211-
},
212-
"201": {
213-
"description": "Created",
214-
"content": {
215-
"application/hal+json": {
216-
"schema": {
217-
"$ref": "#/components/schemas/EntityModelPerson"
218-
}
219-
}
220-
}
221-
},
222-
"204": {
223-
"description": "No Content"
224-
}
225-
}
226-
},
227-
"delete": {
228-
"tags": [
229-
"person-entity-controller"
230-
],
231-
"description": "delete-person",
232-
"operationId": "deleteItemResource-person-delete",
233-
"parameters": [
234-
{
235-
"name": "id",
236-
"in": "path",
237-
"required": true,
238-
"schema": {
239-
"type": "string"
240-
}
241-
}
242-
],
243-
"responses": {
244-
"204": {
245-
"description": "No Content"
246-
},
247-
"404": {
248-
"description": "Not Found"
249-
}
250-
}
251-
},
252-
"patch": {
253-
"tags": [
254-
"person-entity-controller"
255-
],
256-
"description": "patch-person",
257-
"operationId": "patchItemResource-person-patch",
258-
"parameters": [
259-
{
260-
"name": "id",
261-
"in": "path",
262-
"required": true,
263-
"schema": {
264-
"type": "string"
265-
}
266-
}
267-
],
268-
"requestBody": {
269-
"content": {
270-
"application/json": {
271-
"schema": {
272-
"$ref": "#/components/schemas/PersonRequestBody"
273-
}
274-
}
275-
},
276-
"required": true
277-
},
278-
"responses": {
279-
"200": {
280-
"description": "OK",
281-
"content": {
282-
"application/hal+json": {
283-
"schema": {
284-
"$ref": "#/components/schemas/EntityModelPerson"
285-
}
286-
}
287-
}
288-
},
289-
"204": {
290-
"description": "No Content"
291-
}
292-
}
293-
}
294-
},
295113
"/profile": {
296114
"get": {
297115
"tags": [
298116
"profile-controller"
299117
],
300-
"operationId": "listAllFormsOfMetadata_1",
118+
"operationId": "listAllFormsOfMetadata",
301119
"responses": {
302120
"200": {
303121
"description": "OK",
@@ -317,7 +135,7 @@
317135
"tags": [
318136
"profile-controller"
319137
],
320-
"operationId": "descriptor_1_1_1",
138+
"operationId": "descriptor_1",
321139
"responses": {
322140
"200": {
323141
"description": "OK",
@@ -501,17 +319,6 @@
501319
}
502320
}
503321
},
504-
"PersonRequestBody": {
505-
"type": "object",
506-
"properties": {
507-
"firstName": {
508-
"type": "string"
509-
},
510-
"lastName": {
511-
"type": "string"
512-
}
513-
}
514-
},
515322
"Link": {
516323
"type": "object",
517324
"properties": {

0 commit comments

Comments
 (0)