中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

生產環境下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

明水县| 漠河县| 桂林市| 四平市| 耒阳市| 德昌县| 东乡族自治县| 彭水| 昭苏县| 黑水县| 万盛区| 洛阳市| 栖霞市| 南投市| 礼泉县| 杭州市| 博乐市| 即墨市| 轮台县| 华安县| 石景山区| 九龙坡区| 花莲市| 江西省| 郧西县| 纳雍县| 长武县| 靖边县| 马龙县| 蒙自县| 安龙县| 获嘉县| 云霄县| 门源| 清镇市| 尼木县| 肇庆市| 虞城县| 武宁县| 吴堡县| 沂水县|