Java代码中如何关闭swagger的功能
时间: 2024-02-05 08:10:58 浏览: 80
java代码springboot+Swagger+redis+mybatis+restful代码案例(有文档)
在Java代码中关闭Swagger的功能,需要在Spring Boot应用程序的配置文件(application.properties 或 application.yml)中添加以下配置:
```
springfox.documentation.enabled=false
```
或者在Spring Boot应用程序的主类上使用注解 `@EnableSwagger2`,然后添加一个 `Docket` bean,将其禁用:
```java
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.controller"))
.paths(PathSelectors.any())
.build()
.enable(false);
}
}
```
以上两种方式都可以禁用Swagger。
阅读全文