-
mvn spring-boot:run
- http://localhost:8080/swagger-ui.html
property-property-reference-controller
- includes all http methods even though spring data rest only supports
GET
,PUT
,PATCH
andDELETE
- attempting to use
POST
will returnHTTP 405
- does not fill in
{property}
placeholder withchildProperty
-- need to do this manually, which somewhat defeats the purpose of documentation
- includes all http methods even though spring data rest only supports
child-property-property-reference-controller
- spring data rest does not include this
- attempting to use will return
HTTP 404
- schemas
childProperty
is embedded where spring data rest will include link- links are named
additionalProp1
etc rather thanself
,childProperty
, etc