SpringBoot使用Swagger2搭建强大的RESTful API 文档功能
12 13/*14*Created by nbfujx on 2017-11-14.15*/16@Configuration 17@EnableSwagger2 18 public class Swagger2Config { 19 20@Bean 21 public Docket createRestApi(){ 22 return new Docket(DocumentationType.SWAGGER_2)23.apiInfo(api...