'How to disable springfox import on openApi generation?
I would like to replace openapi generator plugin from 5.0.0 to 5.1.0. If I build my project it automatically imports import springfox.documentation.annotations.ApiIgnore; to my all generated by API interfaces.
How can I ignore this implementation?
Solution 1:[1]
Update openapi generator plugin to 5.3.0 or more
Solution 2:[2]
Need to add next settings
additionalProperties: [
apiFirst: true
]
Here a code where useSpringfox property populated.
Link to the similar conversation.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 |
