/** * @ClassName: SwaggerConfig * @Description: SwaggerConfig * @Author: QIUJIAQING * @Date: 2019-03-26 18:20 * @Version:1.0 **/ @Configuration public class SwaggerConfig { @Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()) .select() //为当前包路径 .apis(RequestHandlerSelectors.basePackage("com.mirco.serv.tools.account")) .paths(PathSelectors.any()) .build(); } //构建 api文档的详细信息函数,注意这里的注解引用的是哪个 private ApiInfo apiInfo() { return new ApiInfoBuilder() //页面标题 .title("Account Service API") //创建人 // .contact("") //版本号 .version("1.0") //描述 .description("Account Service的API描述文档") .build(); } }
SwaggerConfig
最新推荐文章于 2023-10-27 15:32:57 发布