package com.om.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.service.Contact; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc; import java.util.Collections; @Configuration @EnableSwagger2WebMvc public class Knife4jConfig { @Bean public Docket createRestApi1() { return new Docket(DocumentationType.SWAGGER_2) .groupName("管理员接口") .protocols(Collections.singleton("https")) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors.basePackage("com.om.controller.admin")) .paths(PathSelectors.any()) .build(); } @Bean public Docket createRestApi2() { return new Docket(DocumentationType.SWAGGER_2) .groupName("客户端接口") .protocols(Collections.singleton("https")) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors.basePackage("com.om.controller.user")) .paths(PathSelectors.any()) .build(); } private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("运维系统项目接口文档") .description("运维系统项目接口文档") .version("1.0") .build(); } }