禁用swagger
时间: 2023-10-11 14:19:11 浏览: 184
spring-boot 禁用swagger的方法
5星 · 资源好评率100%
禁用Swagger可以通过以下步骤完成:
1. 删除Swagger依赖项:如果你使用Maven,则可以将以下依赖项从pom.xml中删除:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
```
2. 关闭Swagger自动配置:如果你使用Spring Boot,则可以在application.properties中添加以下行:
```
springfox.documentation.swagger.v2.enabled=false
```
这将禁用Swagger自动配置,并防止API文档的生成。
3. 移除Swagger配置类:如果你已经为Swagger配置了一个Java类,则可以将其删除。例如,如果你有以下Java类:
```
@Configuration
@EnableSwagger2
public class SwaggerConfig {
// ...
}
```
则可以将它删除。
阅读全文