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

溫馨提示×

溫馨提示×

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

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

springboot集成swagger的步驟是什么

發布時間:2021-11-02 11:45:44 來源:億速云 閱讀:147 作者:iii 欄目:編程語言

這篇文章主要介紹“springboot集成swagger的步驟是什么”,在日常操作中,相信很多人在springboot集成swagger的步驟是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”springboot集成swagger的步驟是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    第一步:maven導入Swagger如下:

    

 <!-- 添加使用swagger的依賴包 --><dependency>
     <groupId>io.springfox</groupId>
     <artifactId>springfox-swagger2</artifactId>
     <version>2.2.2</version>
</dependency>
<!-- 添加使用swagger的依賴包 -->
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.2.2</version>
</dependency>

第二步:創建Swagger2配置類,如下所示:

/**
*
*/
package swagger.config;

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 ignore1992
*
*/
@Configuration
@EnableSwagger2
public class SwaggerConfig
{
@Bean
public Docket createDocket()
{
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(createApiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("swagger.api.controller"))
.paths(PathSelectors.any())
.build();
}

private ApiInfo createApiInfo()
{
return new ApiInfoBuilder()
.title("springboot使用swagger2")
.description("生成對應接口文檔")
.termsOfServiceUrl("https://blog.csdn.net/ignorewho")
.contact("ignore1992")
.version("1.0")
.build();
}
}

第三步:這樣就可以使用swagger提供的注解,來完成描述,調用,生成等功能

常用注解如下:

@Api : 用在類上,說明該類的主要作用。

@ApiOperation:用在方法上,給API增加方法說明。

@ApiImplicitParams : 用在方法上,包含一組參數說明。

@ApiImplicitParam:用來注解來給方法入參增加說明。

使用案例如下:

/**
*
*/
package swagger.api.controller;

import io.swagger.annotations.ApiOperation;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

/**
* @author ignore1992
*
*/
@RestController
@RequestMapping(value = "/swaggerapi")
public class SwaggerApiController
{
@ApiOperation(value = "測試swaggerapi接口方法")
@RequestMapping(value = "/test", method = RequestMethod.GET)
public String test()throws Exception
{
return "swaggerapi 測試";
}
}

到此,關于“springboot集成swagger的步驟是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

丹巴县| 包头市| 玛多县| 陇西县| 滦南县| 萨嘎县| 南京市| 多伦县| 竹山县| 白城市| 雷州市| 孝义市| 监利县| 祁连县| 阜新市| 柘荣县| 越西县| 门头沟区| 静安区| 江达县| 保定市| 洮南市| 兴义市| 巴青县| 北川| 绿春县| 东方市| 肇庆市| 南漳县| 蒙阴县| 福安市| 太谷县| 察雅县| 富裕县| 拜城县| 潍坊市| 呼玛县| 汉源县| 家居| 安乡县| 游戏|