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

溫馨提示×

溫馨提示×

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

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

swagger文檔原來就這樣搞定出來

發布時間:2020-07-02 23:46:16 來源:網絡 閱讀:4742 作者:知止內明 欄目:編程語言

根據大神博客與書輕松搭建自己的swagger文檔太厲害了

 <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.9.2</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>

配置類

package com.sevendays.config;

import org.springframework.context.annotation.Bean;
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.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
 * @author liwen
 * @Title: SwaggerConfig
 * @Description:swagger2文檔搭建
 * @date 2019/11/1 / 19:30
 */
@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select()
                .apis(RequestHandlerSelectors.any()).paths(PathSelectors.any()).build();
    }

    private ApiInfo apiInfo(){
        return new ApiInfoBuilder().build();
    }
}

直接訪問:

http://localhost:8888/swagger-ui.html#/user-controller
swagger文檔原來就這樣搞定出來

向AI問一下細節

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

AI

韩城市| 涞水县| 施秉县| 高邑县| 庐江县| 黎平县| 聂荣县| 漾濞| 庆城县| 大竹县| 信宜市| 宾阳县| 蓬莱市| 霍城县| 邵东县| 盐山县| 万源市| 正定县| 泰安市| 微博| 广水市| 满城县| 横峰县| 逊克县| 宣恩县| 赫章县| 喜德县| 什邡市| 大兴区| 环江| 永年县| 离岛区| 达尔| 定兴县| 黄陵县| 雅安市| 平南县| 黄梅县| 尤溪县| 运城市| 丽江市|