I'm just starting using swagger following this guide, but I found out something very weird that makes no sense for me.
As far as I remember , the v2/api-docs should be used for when you have docs of the version number 2 of your API.
So, the default should be only api-docs, but for some strange reason I found that the default is v2/api-docs.
Checking the library doc I found this.
How do I override that value without later not being able to use v2? (when my API will reach a v2 but I will also want to show the legacy docs).
Or maybe my concept of using v2 is wrong? Can someone help me with this?
v2in the URL does not refer to your APIs version number, it is the Swagger specification version number. The current version of SpringFox uses Swagger 2.0 by default, this is what you are seeing. - woemler