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
I have one controller with two methods - one GET and one POST - for the same path. When this path contains a capturing pattern (e.g. {*wildcard}), only the GET path is included in the openapi.yaml and thus the Swagger UI.
To Reproduce
What version of spring-boot you are using? 3.4.0 (but also occurs with 3.3.5)
What modules and versions of springdoc-openapi are you using? 2.7.0 (issue not appearing with 2.6.0)
Describe the bug
I have one controller with two methods - one GET and one POST - for the same path. When this path contains a capturing pattern (e.g.
{*wildcard}
), only the GET path is included in the openapi.yaml and thus the Swagger UI.To Reproduce
3.4.0
(but also occurs with3.3.5
)2.7.0
(issue not appearing with2.6.0
)openapi.yaml is missing the
post
path for/debug/{wildcard}
:Expected behavior
A path for
POST /debug/{wildcard}
Screenshots
The text was updated successfully, but these errors were encountered: