如何摆脱Swagger UI中的不需要的东西

时间:2019-06-17 10:26:37

标签: java spring-boot swagger swagger-ui springfox

我有一个Yaml文件,其中包含OpenAPI 3.0中的所有api定义。 我的要求是从springboot应用程序中加载Swagger UI,并且我已经使用Springfox依赖项进行了同样的操作。

但是“ basic error controller”在用户界面中无处不在。

  

如何在Swagger UI中摆脱这些不必要的东西?

下面是使用的依赖项。

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.9.2</version>
        </dependency>

我希望所有内容都只能从Yaml文件中加载,但是Yaml会忽略某些内容,而springfox会自动添加某些内容。

https://i.stack.imgur.com/IGtNo.jpg

0 个答案:

没有答案