springboot集成swagger3.0避坑

1.加入依賴

  compile group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'

2.swagger配置類

  @Configuration
public class SwaggerConfiguration implements WebMvcConfigurer {
    private static final String API_BASE_PACKAGE = "com.romens.market.webapp";
    @Autowired
    private SwaggerConfigProperties configProperties;

    @Bean
    public Docket createRestApi() {
        Docket docket = new Docket(DocumentationType.OAS_30)
                // 定義是否開啟swagger,false為關(guān)閉,可以通過變量控制
                .enable(configProperties.isEnable())
                .pathMapping("/")
                .select()
                .apis(RequestHandlerSelectors.basePackage(API_BASE_PACKAGE))
                .paths(PathSelectors.any())
                .build()
                .globalRequestParameters(getGlobalRequestParameters())
                .directModelSubstitute(org.joda.time.LocalDate.class, java.sql.Date.class)
                .directModelSubstitute(org.joda.time.DateTime.class, java.util.Date.class);
        if (!StringUtils.isEmpty(configProperties.getPrefix())) {
            docket.pathMapping(configProperties.getPrefix());
        }
        return docket.apiInfo(apiInfo());
    }

    private ApiInfo apiInfo() {
        Contact contact = new Contact("項目組",
                "http://www./",
                "xx@xx.cn");
        return new ApiInfoBuilder()
                .title("webapp-service")
                .description("模塊")
                .termsOfServiceUrl("")
                .contact(contact)
                .version("1.0.0")
                .build();
    }

    /**
     * 通用攔截器排除swagger設(shè)置呵恢,所有攔截器都會自動加swagger相關(guān)的資源排除信息
     */
    @SuppressWarnings("unchecked")
    @Override
    public void addInterceptors(InterceptorRegistry registry) {

        try {
            Field registrationsField = FieldUtils.getField(InterceptorRegistry.class, "registrations", true);
            List<InterceptorRegistration> registrations = (List<InterceptorRegistration>) ReflectionUtils.getField(registrationsField, registry);
            if (registrations != null) {
                for (InterceptorRegistration interceptorRegistration : registrations) {
                    interceptorRegistration
                            .excludePathPatterns("/swagger**/**")
                            .excludePathPatterns("/webjars/**")
                            .excludePathPatterns("/v3/**")
                            .excludePathPatterns("/doc.html");
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    //生成全局通用參數(shù)
    private List<RequestParameter> getGlobalRequestParameters() {
        List<RequestParameter> parameters = new ArrayList<>();
        parameters.add(new RequestParameterBuilder()
                .name("entId")
                .description("企業(yè)號")
                .required(true)
                .in(ParameterType.HEADER)
                .query(q -> q.model(m -> m.scalarModel(ScalarType.STRING)))
                .required(false)
                .build());
        parameters.add(new RequestParameterBuilder()
                .name("operator")
                .description("操作人")
                .required(false)
                .in(ParameterType.HEADER)
                .query(q -> q.model(m -> m.scalarModel(ScalarType.STRING)))
                .required(false)
                .build());
        return parameters;
    }

    //生成通用響應(yīng)信息
    private List<Response> getGlobalResonseMessage() {
        List<Response> responseList = new ArrayList<>();
        responseList.add(new ResponseBuilder().code("404").description("找不到資源").build());
        return responseList;
    }

}

3.添加資源映射(重要

  @Configuration
public class RomensWebMvcConfigurationSupport extends WebMvcConfigurationSupport {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("doc.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/swagger-ui/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/springfox-swagger-ui/");
        registry.addResourceHandler("favicon.ico")
                .addResourceLocations("classpath:/static/favicon.ico");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
    }
    

補充
1)swagger增強(qiáng)

  implementation group: 'com.github.xiaoymin', name: 'knife4j-spring-boot-starter', version: '3.0.2'
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌袱饭,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件呛占,死亡現(xiàn)場離奇詭異虑乖,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)晾虑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門疹味,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人帜篇,你說我怎么就攤上這事糙捺。” “怎么了笙隙?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵洪灯,是天一觀的道長。 經(jīng)常有香客問我竟痰,道長签钩,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任坏快,我火速辦了婚禮铅檩,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘莽鸿。我一直安慰自己昧旨,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布祥得。 她就那樣靜靜地躺著兔沃,像睡著了一般。 火紅的嫁衣襯著肌膚如雪级及。 梳的紋絲不亂的頭發(fā)上乒疏,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天,我揣著相機(jī)與錄音创千,去河邊找鬼缰雇。 笑死,一個胖子當(dāng)著我的面吹牛追驴,可吹牛的內(nèi)容都是我干的械哟。 我是一名探鬼主播,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼殿雪,長吁一口氣:“原來是場噩夢啊……” “哼暇咆!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤爸业,失蹤者是張志新(化名)和其女友劉穎其骄,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體扯旷,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡拯爽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了钧忽。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片毯炮。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖耸黑,靈堂內(nèi)的尸體忽然破棺而出桃煎,到底是詐尸還是另有隱情,我是刑警寧澤大刊,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布为迈,位于F島的核電站,受9級特大地震影響缺菌,放射性物質(zhì)發(fā)生泄漏葫辐。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一男翰、第九天 我趴在偏房一處隱蔽的房頂上張望另患。 院中可真熱鬧,春花似錦蛾绎、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至薯嗤,卻和暖如春顽爹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背骆姐。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工镜粤, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人玻褪。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓肉渴,卻偏偏與公主長得像,于是被迫代替她去往敵國和親带射。 傳聞我的和親對象是個殘疾皇子同规,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容