Springboot整合swagger - Go语言中文社区

Springboot整合swagger


1添加maven依赖

<dependency>
         <groupId>io.springfox</groupId>
         <artifactId>springfox-swagger2</artifactId>
         <version>2.7.0</version>
      </dependency>
      <dependency>
         <groupId>io.springfox</groupId>
         <artifactId>springfox-swagger-ui</artifactId>
         <version>2.7.0</version>
      </dependency>

2启动类添加启动注解


3编写配置类

@Configuration
@EnableSwagger2  
public class SwaggerConfig {
    @Bean  
      public Docket userApi() {  
          Predicate<RequestHandler> swaggerSelector = RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class);  
          return new Docket(DocumentationType.SWAGGER_2)  
                  .securitySchemes(newArrayList(new ApiKey[]{this.apiKey()}))  
//                .securitySchemes(newArrayList(new BasicAuth("test"))) //账号密码登录  
//                .enable(false)   //禁止使用  
                  .apiInfo(apiInfo())  
                  .select()  
//                .apis(RequestHandlerSelectors.basePackage("com.boot"))  
                  .apis(swaggerSelector)  
                  .paths(PathSelectors.any())  
                  .build();  
      }  
     
       private ApiInfo apiInfo(){  
           return new ApiInfoBuilder() 
                 .title("My Swagger")
                 /*  .description("构建restful api,learn more:springfox.io")  //副标题
                   .license("Licens")  
                   .licenseUrl("http://www.apache.org/licenses/LICENSE-2.0.html")  
                   .contact(new Contact("boot","官网地址url","email地址"))  
                   .version("0.0.1")  */
                   .build();  
       }  

       ApiKey apiKey() {
           return new ApiKey("sessionId", "sessionId", "header");  
       }  
}

4启动项目打开浏览器输入 http://localhost:端口/swagger-ui.html

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_38482644/article/details/80446399
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-04-19 13:21:55
  • 阅读 ( 670 )
  • 分类:

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢