SpringBoot 完全禁用swagger-ui
时间: 2024-06-20 07:02:51 浏览: 283
spring-boot 禁用swagger的方法
5星 · 资源好评率100%
要完全禁用SpringBoot中的Swagger-UI,你可以在application.properties或application.yml文件中添加以下属性:
```
springfox.documentation.swagger-ui.enabled=false
```
这将禁用Swagger-UI,但是API文档仍然可以通过访问/v2/api-docs端点来获取。如果你想要禁用API文档的访问,你可以将以下属性添加到配置文件中:
```
springfox.documentation.enabled=false
```
这将完全禁用Swagger-UI和API文档。
阅读全文