DEV Community

Stephen Muindi
Stephen Muindi

Posted on

Answer: springboot swagger3 "Failed to load remote configuration."

The change from /v3/api-docs to /v3/api-docs/** ensures that any additional path segments are also matched, which is necessary for Swagger's dynamic documentation generation to work properly.

"/v3/api-docs", made it to fail but "/v3/api-docs/**" made it to work,

This is because, /v3/api/docs would only match exactly that path, but /v3/api/docs will…

Top comments (0)