最近一个项目 swagger没有分组就特喵难受啊
全部都在一个默认里面 找自己写的controller找半天都还找不到
所有swagger分组就非常重要了
代码实现:swagger中配置
/**
*把一些多人完成的controller放进去
* @author zhangjunrong
* @date 2022/4/2 21:05
*/
@Bean
public Docket createRestAoiCooperate(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.xxx.controller.cooperate"))
.paths(PathSelectors.any())
.build()
.groupName("合作");
}
/**
*小乌龟组
* @author zhangjunrong
* @date 2022/4/2 21:05
*/
@Bean
public Docket createRestAoiZJR(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.xxx.controller.xxx"))
.paths(PathSelectors.any())
.build()
.groupName("小乌龟");
}
效果展示:
?
|