Closed
Description
Describe the bug
for relationships like /entity/{id}/childProperty
, spring doc creates the childProperty
name based on the type instead of the name
To Reproduce
https://github.com/marcel-steinbach-mpf/springdoc-data-rest
Expected behavior
@ManyToOne
@JoinColumn(name = "child_property_id")
private ChildProperty myChildPropertyName;
should be:
"/properties/{id}/myChildPropertyName": {
but is:
"/properties/{id}/childProperty": {
Additional context
related to #792