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
In addition to issue described above, it happens on all object with an attribute name starts with 'set'.
This is the sample object generated by springdoc: "ting" was added incorrectly "SampleResponse":{"type":"object","properties":{"ting":{"$ref":"#/components/schemas/SampleResponse"},"id":{"type":"string","description":"ID"},"description":{"type":"string","description":"Description"},"setting":{"type":"string","description":"Setting"}}}
To Reproduce
Steps to reproduce the behavior:
I'm using org.springdoc:springdoc-openapi-starter-webmvc-ui-2.2.0 (tried to upgrade to 2.6.0 as well, but the issue is still there)
Sample code that produces the issue:
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class SampleController {
@GetMapping("/sample")
public ResponseEntity<SampleResponse> getSampleResponse() {
return ResponseEntity.ok(new SampleResponse().id("12345").description("sample response").setting("sample setting"));
}
}
The issues stems from how swagger-core introspects methods to generate schema properties. They do not only look at the @Schema annotations, but also certain types of public methods in general.
I could for example add
publicbooleanisName() {
returnfalse;
}
to your class, and that would add a new property "name" to the schema. This is due to them removing known prefixes such as "get, set, is" to derive the parameter's name. This will of course have odd consequences when the name is setting, since set will be removed.
Describe the bug
"SampleResponse":{"type":"object","properties":{"ting":{"$ref":"#/components/schemas/SampleResponse"},"id":{"type":"string","description":"ID"},"description":{"type":"string","description":"Description"},"setting":{"type":"string","description":"Setting"}}}
To Reproduce
Steps to reproduce the behavior:
The sampleResponse in openapi json:
"SampleResponse": { "type":"object", "properties":{ "ting": { "$ref":"#/components/schemas/SampleResponse"}, "id": {"type":"string","description":"ID"}, "description": {"type":"string","description":"Description"}, "setting":{"type":"string","description":"Setting"} } }
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: