1、创建公共模块,整合swagger,为了所有模块都能进行使用
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket webApiConfig(){
return new Docket(DocumentationType.SWAGGER_2)
.groupName("webApi")
.apiInfo(webApiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.atguigu"))
.paths(Predicates.not(PathSelectors.regex("/error.*")))
.build();
}
private ApiInfo webApiInfo(){
return new ApiInfoBuilder()
.title("网站-课程中心API文档")
.description("本文档描述了课程中心微服务接口定义")
.version("1.0")
.contact(new Contact("yamky", "", "1482780155@qq.com"))
.build();
}
}
2、在service_edu引入service_base依赖 3、在service_edu启动类添加注解,设置包扫描规则 4、访问http://localhost:8001/swagger-ui.html测试
|