springboot 怎么关闭swagger
时间: 2023-07-08 16:41:16 浏览: 110
spring-boot 禁用swagger的方法
5星 · 资源好评率100%
要关闭Spring Boot中的Swagger,可以通过在application.properties或application.yml文件中添加以下配置来实现:
```yaml
#关闭Swagger文档生成
swagger.enabled=false
```
或者在启动类上使用 `@EnableSwagger2` 注解时,使用 `@Profile` 注解来指定只在特定的环境下启用Swagger,例如:
```java
@Configuration
@EnableSwagger2
@Profile({"dev", "test"})
public class SwaggerConfig {
//...
}
```
这样Swagger将只在dev和test环境下启用,在其他环境下将被禁用。
阅读全文