如何将项目扫描仅限制到com.home.controller包。昂首阔步

时间:2018-01-14 13:48:39

标签: swagger-ui

配置设置为扫描整个项目。如何更改为仅扫描com.home.controller

@Bean
public Docket api(){
    return new Docket(DocumentationType.SWAGGER_2)
            .select()
            .apis(RequestHandlerSelectors.any())
            .paths(PathSelectors.any())
            .build();
}

1 个答案:

答案 0 :(得分:2)

查看课程span

http://springfox.github.io/springfox/javadoc/2.6.0/springfox/documentation/builders/RequestHandlerSelectors.html

它有4种方法,其中一种是RequestHandlerSelectors

使用它并输入包的地址,如下所示:

basePackage()