码迷,mamicode.com
首页 > 其他好文 > 详细

【Swagger2】【1】匹配多个controller

时间:2019-05-03 22:39:03      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:实现   dock   bin   ann   http   ret   rest   uil   and   

前言:项目中有多个模块,所以有多个controller层。我是用方案二的

正文:

方案一:使用多个controller的共同拥有的父类

@Bean
public Docket createRestApi() {
    return new Docket(DocumentationType.SWAGGER_2)
            .apiInfo(apiInfo())
            .select()
            .apis(RequestHandlerSelectors.basePackage("com.xx"))
            .paths(PathSelectors.any())
            .build();
}

方法二:指定所有controller的都实现的一个接口,比如@RestController

@Bean
public Docket createRestApi() {
    return new Docket(DocumentationType.SWAGGER_2)
            .apiInfo(apiInfo())
            .select()
            .apis(RequestHandlerSelectors.withClassAnnotation(RestController.class))
            .paths(PathSelectors.any())
            .build();
}

错误的两种写法

@Bean
public Docket createRestApi() {
    return new Docket(DocumentationType.SWAGGER_2)
            .apiInfo(apiInfo())
            .select()
            .apis(RequestHandlerSelectors.basePackage("com.xx.*.controller"))
            .paths(PathSelectors.any())
            .build();
}
@Bean
public Docket createRestApi() {
    return new Docket(DocumentationType.SWAGGER_2)
            .apiInfo(apiInfo())
            .select()
            .apis(RequestHandlerSelectors.basePackage("com.xx.course.controller"))
            .apis(RequestHandlerSelectors.basePackage("com.xx.user.controller"))
            .paths(PathSelectors.any())
            .build();
}

参考博客:

swagger2 如何匹配多个controller - 贾树丙 - 博客园
http://www.cnblogs.com/acm-bingzi/p/swagger2-controller.html

【Swagger2】【1】匹配多个controller

标签:实现   dock   bin   ann   http   ret   rest   uil   and   

原文地址:https://www.cnblogs.com/huashengweilong/p/10806835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!