spring boot集成swagger2

2021-03-03 07:27

阅读:402

标签:adr   request   门户   doc   service   new   document   配置   ping   

spring boot集成swagger2

pom依赖

io.springfox
            springfox-swagger2
            2.6.1io.springfox
            springfox-swagger-ui
            2.6.1

创建配置文件


@EnableSwagger2
@Configuration
public class Swagger2Config {

    @Bean
    public Docket CreateRestfulApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("run.app.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("ADROITWOLF博客API")
                .description("多用户博客门户网站")
                .termsOfServiceUrl("https://adroitwolf.github.io")
                .version("1.0")
                .build();
    }
}

里面的basePackage改成自己的controller路径

具体使用方法

这里贴一个使用示例:


 @GetMapping("/query")
    @ApiOperation("管理员审核文章列表")
    public BaseResponse getListByExample(){
       xxx                             
    }

生成API

访问:IP:port/swagger-ui.html

spring boot集成swagger2

标签:adr   request   门户   doc   service   new   document   配置   ping   

原文地址:https://www.cnblogs.com/adroitwolf/p/14397819.html


评论


亲,登录后才可以留言!