您好,登錄后才能下訂單哦!
這篇文章主要講解了“生產環境下springboot中怎么配置禁用swagger”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“生產環境下springboot中怎么配置禁用swagger”吧!
一、序言
在生產環境下,我們需要關閉swagger配置,避免暴露接口的這種危險行為。
二、方法:
禁用方法1:使用注解@Profile({"dev","test"}) 表示在開發或測試環境開啟,而在生產關閉。(推薦使用)
禁用方法2:使用注解@ConditionalOnProperty(name = "swagger.enable", havingValue = "true") 然后在測試配置或者開發配置中 添加 swagger.enable = true 即可開啟,生產環境不填則默認關閉Swagger.
如方法1:
package com.left;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spi.service.contexts.SecurityContext;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
* <pre>
* @author : orange
* e-mail : 495314527@qq.com
* time : 2018/8/27 14:49
* desc : swagger配置
* version: 1.0
* </pre>
*/
@Configuration
@EnableSwagger2
@Profile({"dev","test"})
public class Swagger2 {
@Bean
public Docket restApi(){
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.left.controller"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder().title("springboot整合swagger2")
.description("springboot整合swagger2")
.termsOfServiceUrl("https://blog.csdn.net/weixin_37591536")
.version("1.0")
.build();
}
}
結果:
開發環境可以正常訪問
感謝各位的閱讀,以上就是“生產環境下springboot中怎么配置禁用swagger”的內容了,經過本文的學習后,相信大家對生產環境下springboot中怎么配置禁用swagger這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。