亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

石景山区| 敖汉旗| 陆丰市| 黄山市| 金沙县| 积石山| 新田县| 全州县| 婺源县| 阳高县| 东乡族自治县| 南乐县| 莎车县| 伊宁市| 舞阳县| 昌吉市| 休宁县| 盐亭县| 洛浦县| 商城县| 长沙市| 梁平县| 龙陵县| 健康| 马边| 迭部县| 黔江区| 巴南区| 米易县| 建瓯市| 奉化市| 舒兰市| 墨江| 思南县| 永春县| 崇义县| 嘉义市| 南川市| 繁峙县| 阳江市| 神池县|