I'm trying to upgrade my springboot app from 2.5.9 to 2.6.7 so i needed to migrate from springfox 3.0.0 to springdoc 1.6.8 because of many compatibility issues.
In springfox i configured in this way
springfox:
documentation:
swaggerUi:
baseUrl: /documentation
openApi:
v3:
path: /documentation/v3/api-docs
swagger:
v2:
path: /documentation/v2/api-docs
I used v2 api-docs for other stuffs so i'd like to continue to have also a v2 documentation.
Do you know if is possible to produce v2 and v3 documentation with springdoc?
thx