91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

生產環境下springboot中怎么配置禁用swagger

發布時間:2021-07-06 10:42:20 來源:億速云 閱讀:1858 作者:chen 欄目:大數據

這篇文章主要講解了“生產環境下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這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和顺县| 洪湖市| 福海县| 沧州市| 佛冈县| 淳安县| 榆树市| 景宁| 仁化县| 汝阳县| 库尔勒市| 德保县| 墨江| 高淳县| 攀枝花市| 特克斯县| 体育| 土默特右旗| 中江县| 沾益县| 曲沃县| 普宁市| 贡觉县| 新宾| 曲松县| 绥宁县| 浏阳市| 石首市| 德安县| 克什克腾旗| 来凤县| 德清县| 和田县| 佛山市| 敖汉旗| 色达县| 竹山县| 陇南市| 沾化县| 洱源县| 安图县|