sprignboot关闭swagger2
时间: 2023-10-02 17:12:15 浏览: 106
要关闭Spring Boot中的Swagger2,可以按照以下步骤进行操作:
1. 在pom.xml文件中将Swagger2的依赖注释掉或者删除:
```xml
<!-- <dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency> -->
```
2. 在Spring Boot启动类中添加以下注解:
```java
@EnableSwagger2 // 注释或者删除这个注解
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
3. 重新运行Spring Boot项目,Swagger2将会被禁用。
注意:如果你使用的是Swagger3,需要将上述的Swagger2替换成Swagger3。另外,如果你想临时禁用Swagger,可以在application.properties中添加以下配置:
```properties
springfox.documentation.enabled=false
```
相关问题
sprigcloud关闭swagger2
如果你想在Spring Cloud中关闭Swagger2,可以在应用程序的配置文件中添加以下属性:
```
springfox.documentation.swagger.v2.enabled=false
```
或者,在Spring的@Configuration类中添加以下代码:
```java
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("API文档")
.version("1.0-SNAPSHOT")
.build();
}
```
然后再在应用程序的配置文件中添加以下属性:
```
springfox.documentation.swagger.v2.enabled=false
```
这将禁用Swagger2。
nexus 关闭swagger
nexus关闭swagger的方法是在nexus的配置文件中进行设置。具体步骤如下:
1. 打开nexus的配置文件,通常是nexus.properties文件。
2. 在配置文件中找到nexus的启动参数配置部分。
3. 添加以下参数来关闭swagger:
```
nexus-args=${karaf.etc}/karaf.nexusrc -Dnexus.nexusrc=${karaf.etc}/nexus.properties -Dnexus-features-rc=${karaf.etc}/nexus-features.properties -Dnexus.swagger.enabled=false
```
4. 保存配置文件并重新启动nexus。
阅读全文