How to disable default /v3/api-docs definition in springdoc Swagger UI page?

Viewed 58

I have my own OpenAPI specification YAML file which I can able to load in Swagger UI via /openapi-spec.yaml definition but the default /v3/api-docs is still exists. My goal is to disable the default /v3/api-docs and show only /openapi-spec.yaml as default.

Note: I'm using this dependency:

    <dependency>
        <groupId>org.springdoc</groupId>
        <artifactId>springdoc-openapi-ui</artifactId>
        <version>1.6.9</version>
    </dependency>

/v3/api-docs:

/openapi-spec.yaml

1 Answers

Try to add this property in your spring-boot configuration file:

springdoc.swagger-ui.path=/openapi-spec.yaml

Related