Spring Rest Docs使用

2022-10-07  本文已影响0人  神易风

话说程序员最讨厌两样东西,接手项目时没有任何文档,自己开发项目必须提供文档。

今天给大家分享一个能通过代码自动生成文档技术,Spring Rest Doc过在单元测试中额外添加 API 信息描述,从而自动生成对应的文档片段。
下面通过一个简单的例子演示下如何快速上手的。在Spring Boot项目中添加maven 依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.restdocs</groupId>
            <artifactId>spring-restdocs-mockmvc</artifactId>
            <scope>test</scope>
        </dependency>

在controller添加接口

    @PostMapping("/show/entity")
    public Dog getDog(@RequestBody Dog dog){
        return dog;
    }

编写测试用例,并且输出文档。

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.http.MediaType;
import org.springframework.restdocs.RestDocumentationContextProvider;
import org.springframework.restdocs.RestDocumentationExtension;
import org.springframework.restdocs.mockmvc.MockMvcRestDocumentation;
import org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;


@WebMvcTest
@ExtendWith({RestDocumentationExtension.class, SpringExtension.class})
class DogControllerTest {

    private MockMvc mockMvc;

    @BeforeEach
    public void init(WebApplicationContext applicationContext, RestDocumentationContextProvider contextProvider){
        mockMvc = MockMvcBuilders.webAppContextSetup(applicationContext)
                .apply(MockMvcRestDocumentation.documentationConfiguration(contextProvider))
                .build();
    }

    @Test
    void getDog() throws Exception {
        String json = "{\"id\": 12,\"name\":\"Miki\"}";
        mockMvc.perform(RestDocumentationRequestBuilders.post("/dog/show/entity")
                        .content(json)
                        .contentType(MediaType.APPLICATION_JSON_VALUE))
                .andExpect(MockMvcResultMatchers.status().isOk()) //成功响应
                .andExpect(MockMvcResultMatchers.jsonPath("name","Miki").exists()) //结果匹配
                .andDo(MockMvcRestDocumentation.document("dog",
                        requestFields(PayloadDocumentation.fieldWithPath("name").description("名字"),
                                PayloadDocumentation.fieldWithPath("id").description("实体id")),
                        PayloadDocumentation.responseFields(
                                PayloadDocumentation.fieldWithPath("name").description("名字"),
                                PayloadDocumentation.fieldWithPath("id").description("实体id")
                        ))); //输出文档
    }
}

在target目录可以看到生成文档


image.png

在target/generated-snippets/dog目录下会生成文档片段
例如curl-request.adoc 就是curl执行http命令执行参数,直接copy就可以执行了

$ curl 'http://localhost:8080/dog/show/entity' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"id": 12,"name":"Miki"}'

要想生成一个完整文档,这些文档全部合并成一个文档,还需要编写一个集合文档。在项目src/main/asciidoc/目录下新增文件index.adoc

= 这是标题一
:toc: left

文章段落

== 这是标题二

.curl-request
include::{snippets}/dog/curl-request.adoc[]

.http-request
include::{snippets}/dog/http-request.adoc[]

.request-fields
include::{snippets}/dog/request-fields.adoc[]

.response-body
include::{snippets}/dog/response-body.adoc[]

.response-fields
include::{snippets}/dog/response-fields.adoc[]

使用asciidoctor-maven-plugin 插件生成html文档

<plugin>
                <groupId>org.asciidoctor</groupId>
                <artifactId>asciidoctor-maven-plugin</artifactId>
                <version>1.5.3</version>
                <executions>
                    <execution>
                        <id>generate-docs</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>process-asciidoc</goal>
                        </goals>
                        <configuration>
                            <sourceDocumentName>index.adoc</sourceDocumentName>
                            <backend>html</backend>
                            <attributes>
                                <snippets>${project.build.directory}/generated-snippets</snippets>
                            </attributes>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

运行mvn package命令后可以在target/generated-docs看见index.html,效果如下

image.png

Spring Rest Docs只是提供生成文档片而已,要生成一份完整的问题,仍然需要手动去编写index.adoc,引用文档片,通过组合的方式变成一个自己想要的文档。这个跟Swagger完去自动化生成的文档有很多区别的。两者在使用上也有很多不同。

生成方式:
使用场景;
上一篇下一篇

猜你喜欢

热点阅读