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 am trying to globally apply @Parameter(hidden = true) for @Login LoginInfo loginInfo without manually adding it to each controller method. However, the expected behavior is not achieved for @RequestBody parameters in POST/PUT requests.
The swagger structure is changed as in 1, but is there a way to get the same result as in 2?
Question
How can I modify the global configuration to ensure that @Login LoginInfo loginInfo is removed in the same way as manually adding @Parameter(hidden = true), so that the request body structure is flattened correctly in Swagger?
Could you please help me?
The text was updated successfully, but these errors were encountered:
Hi
Summary
I am trying to globally apply
@Parameter(hidden = true)
for@Login LoginInfo loginInfo
without manually adding it to each controller method. However, the expected behavior is not achieved for@RequestBody
parameters in POST/PUT requests.Steps to Reproduce
Add SpringDoc Dependency
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
Implement GlobalOperationCustomizer
Define Controller Methods
addExclusionKeyword Behavior
LoginInfo has been removed from the Swagger configuration, but the two result structures are different:
addExclusionKeyword2 Behavior
The swagger structure is changed as in 1, but is there a way to get the same result as in 2?
Question
How can I modify the global configuration to ensure that
@Login LoginInfo loginInfo
is removed in the same way as manually adding@Parameter(hidden = true)
, so that the request body structure is flattened correctly in Swagger?Could you please help me?
The text was updated successfully, but these errors were encountered: