package com.project.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.Contact; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.swagger2.annotations.EnableSwagger2; /** * @Author: liangrenren * @Date: 21:51 2021/2/18 * @Description: * @Version v1.0 */ @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) .pathMapping("/") .select() .apis(RequestHandlerSelectors.basePackage("com.project.controller")) .paths(PathSelectors.any()) .build().apiInfo(new ApiInfoBuilder() .title("SpringBoot整合Swagger") .description("SpringBoot整合Swagger,详细信息......") .version("9.0") .contact(new Contact("啊啊啊啊","blog.csdn.net","aaa@gmail.com")) .license("The Apache License") .licenseUrl("http://www.baidu.com") .build()); } }

大神程序员 LV23
7月2日
sgrfsgrts LV2
5月15日
微信网友_6631309708414976 LV5
4月26日
SX520886 LV6
4月24日
微信网友_6979151039729664 LV2
4月4日
lipiao161 LV16
3月16日
微信网友_6520355827929088 LV2
2月28日
dane168 LV8
2月17日
微信网友_7041036943331328 LV7
1月2日
BlackList LV6
1月2日

大神程序员 LV23
7月2日
浙江螃蟹 LV7
7月2日
3334004690 LV11
6月28日
helloworldsbsb LV8
6月25日
yifeng868 LV9
6月23日
xiaotao555555 LV3
6月20日
微信网友_7556426066169856
6月16日
暂无贡献等级
liqingzhao6 LV12
6月15日
Maomaoyun
6月12日
暂无贡献等级
小小可爱
6月11日
暂无贡献等级