RESTDocs(2)
-
RestDocs - ClassCastException
@Test void 게시글_저장() throws Exception { mockMvc.perform(RestDocumentationRequestBuilders.post("/api/v1/posts") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(postCreateDto))) .andExpect(status().isOk()) .andDo(print()) .andDo(document("post-save", requestFields( fieldWithPath("title").description("게시글 제목"), fieldWithPath("content").description("게시글 내용"), fieldWi..
2022.12.16 -
RestDocs - include file not found
RestDocs로 문서화를 진행하던 도중에 다음의 에러가 발생했다. include file not found Unresolved directive in index.adoc - include::../../build/generated-snippets/post-update/http-response.adoc[] src/docs/asciidoc 디렉토리에 index.adoc을 생성하여 다음과 같이 작성했는데, 화면 오른쪽의 preview가 잘 나오는 것을 보고 build/generated-snippets 하위의 파일들을 잘 읽어들였음을 확인할 수 있었다. 다만 문제는 gradle.build를 실행해서 index.adoc을 static/docs/index.html로 복사하는 과정에서 발생한 것이다. 왜 여기서는 ...
2022.12.16