zoukankan      html  css  js  c++  java
  • springboot集成swagger2,构建优雅的Restful API

    swagger,中文“拽”的意思。它是一个功能强大的api框架,它的集成非常简单,不仅提供了在线文档的查阅,而且还提供了在线文档的测试。另外swagger很容易构建restful风格的api,简单优雅帅气,正如它的名字。

    一、引入依赖

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

    二、写配置类

    @Configuration
    @EnableSwagger2
    public class Swagger2 {
    
        @Bean
        public Docket createRestApi() {
            return new Docket(DocumentationType.SWAGGER_2)
                    .apiInfo(apiInfo())
                    .select()
                    .apis(RequestHandlerSelectors.basePackage("com.forezp.controller"))
                    .paths(PathSelectors.any())
                    .build();
        }
        private ApiInfo apiInfo() {
            return new ApiInfoBuilder()
                    .title("springboot利用swagger构建api文档")
                    .description("简单优雅的restfun风格,http://blog.csdn.net/forezp")
                    .termsOfServiceUrl("http://blog.csdn.net/forezp")
                    .version("1.0")
                    .build();
        }
    }


    swagger配置文件说明
    1. ParameterBuilder tokenPar = new ParameterBuilder();    
    2.         List<Parameter> pars = new ArrayList<Parameter>();    
    3.         tokenPar.name("token").description("令牌")  
    4.         .modelRef(new ModelRef("string")).parameterType("query").required(false).build();    
    5.         pars.add(tokenPar.build());
    这段代码是默认参数,添加上后,所有的接口都会有一个公共参数,不需要在每个接口单独配置
    apis(RequestHandlerSelectors.basePackage("com.sst"))  这个是基于基于注解扫描的位置,写到目录最外层即可
    1. return new ApiInfoBuilder()  
    2.         .title("个人测试")  
    3.         .description("个人测试用api")  
    4.         .termsOfServiceUrl("http://blog.csdn.net/penyoudi1")  
    5.         .contact("测试")  
    6.         .version("1.0")  
    7.         .build();                   这个是一些页面展示数据的配置,用于标题,分组说明等
    
    
    controller注解说明
      1. @Api(value="测试接口Controller")    这个注解用于整个类上,对整个类中的接口列表进行简单说明
      2. @ApiOperation(value="测试用接口", notes="测试用接口" ,httpMethod="POST") 





    三、写生产文档的注解
    
    swagger通过注解表明该接口会生成文档,包括接口名、请求方法、参数、返回信息的等等。
    
        @Api:修饰整个类,描述Controller的作用
        @ApiOperation:描述一个类的一个方法,或者说一个接口
        @ApiParam:单个参数描述
        @ApiModel:用对象来接收参数
        @ApiProperty:用对象接收参数时,描述对象的一个字段
        @ApiResponse:HTTP响应其中1个描述
        @ApiResponses:HTTP响应整体描述
        @ApiIgnore:使用该注解忽略这个API
        @ApiError :发生错误返回的信息
        @ApiParamImplicitL:一个请求参数
        @ApiParamsImplicit 多个请求参数
    
    现在通过一个栗子来说明:
    package com.forezp.controller;
    
    import com.forezp.entity.Book;
    import io.swagger.annotations.ApiImplicitParam;
    import io.swagger.annotations.ApiImplicitParams;
    import io.swagger.annotations.ApiOperation;
    import org.springframework.ui.ModelMap;
    import org.springframework.web.bind.annotation.*;
    import springfox.documentation.annotations.ApiIgnore;
    
    import java.util.*;
    
    /**
     * 用户创建某本图书 POST    /books/
     * 用户修改对某本图书    PUT /books/:id/
     * 用户删除对某本图书    DELETE  /books/:id/
     * 用户获取所有的图书 GET /books
     *  用户获取某一图书  GET /Books/:id
     * Created by fangzhipeng on 2017/4/17.
     * 官方文档:http://swagger.io/docs/specification/api-host-and-base-path/
     */
    @RestController
    @RequestMapping(value = "/books")
    public class BookContrller {
    
        Map<Long, Book> books = Collections.synchronizedMap(new HashMap<Long, Book>());
    
        @ApiOperation(value="获取图书列表", notes="获取图书列表")
        @RequestMapping(value={""}, method= RequestMethod.GET)
        public List<Book> getBook() {
            List<Book> book = new ArrayList<>(books.values());
            return book;
        }
    
        @ApiOperation(value="创建图书", notes="创建图书")
        @ApiImplicitParam(name = "book", value = "图书详细实体", required = true, dataType = "Book")
        @RequestMapping(value="", method=RequestMethod.POST)
        public String postBook(@RequestBody Book book) {
            books.put(book.getId(), book);
            return "success";
        }
        @ApiOperation(value="获图书细信息", notes="根据url的id来获取详细信息")
        @ApiImplicitParam(name = "id", value = "ID", required = true, dataType = "Long",paramType = "path")
        @RequestMapping(value="/{id}", method=RequestMethod.GET)
        public Book getBook(@PathVariable Long id) {
            return books.get(id);
        }
    
        @ApiOperation(value="更新信息", notes="根据url的id来指定更新图书信息")
        @ApiImplicitParams({
                @ApiImplicitParam(name = "id", value = "图书ID", required = true, dataType = "Long",paramType = "path"),
                @ApiImplicitParam(name = "book", value = "图书实体book", required = true, dataType = "Book")
        })
        @RequestMapping(value="/{id}", method= RequestMethod.PUT)
        public String putUser(@PathVariable Long id, @RequestBody Book book) {
            Book book1 = books.get(id);
            book1.setName(book.getName());
            book1.setPrice(book.getPrice());
            books.put(id, book1);
            return "success";
        }
        @ApiOperation(value="删除图书", notes="根据url的id来指定删除图书")
        @ApiImplicitParam(name = "id", value = "图书ID", required = true, dataType = "Long",paramType = "path")
        @RequestMapping(value="/{id}", method=RequestMethod.DELETE)
        public String deleteUser(@PathVariable Long id) {
            books.remove(id);
            return "success";
        }
    
        @ApiIgnore//使用该注解忽略这个API
        @RequestMapping(value = "/hi", method = RequestMethod.GET)
        public String  jsonTest() {
            return " hi you!";
        }
    }
    

      

    通过相关注解,就可以让swagger2生成相应的文档。如果你不需要某接口生成文档,只需要在加@ApiIgnore注解即可。需要说明的是,如果请求参数在url上,@ApiImplicitParam 上加paramType = “path” 。

    启动工程,访问:http://localhost:8080/swagger-ui.html ,就看到swagger-ui:

    Paste_Image.png

    整个集成过程非常简单,但是我看了相关的资料,swagger没有做安全方面的防护,可能需要我们自己做相关的工作。

    四、参考资料

    swagger.io

    Spring Boot中使用Swagger2构建强大的RESTful API文档

  • 相关阅读:
    【转】苹果App Store审核指南中文翻译(更新)
    ios中的coredata的使用
    iOS开发——网络编程OC篇&Socket编程
    [深入浅出Cocoa]iOS网络编程之Socket
    RESTful架构详解
    IOS开发 REST请求 ASIHTTPRequest用法
    iOS 8 AutoLayout与Size Class自悟
    nodejs入门demo
    微信公众号查询账户余额等
    微信公众号token验证失败的一些总结
  • 原文地址:https://www.cnblogs.com/a8457013/p/9188583.html
Copyright © 2011-2022 走看看