REST Docs

https://docs.spring.io/spring-restdocs/docs/current/reference/htmlsingle/#introduction Spring REST Docs Document RESTful services by combining hand-written documentation with auto-generated snippets produced with Spring MVC Test or WebTestClient. docs.spring.io 공식문서가 최고당. ㅎㅎ 근 1주일만에 프로젝트에도 적용시켜보고 재미는 있지만.. Security 인증 인가 정보 때문에 많이 시간을 허비했다. 에러 일기에 많이 작성했으니 나중에 검색해서 찾을 수 있도록! https://computerlove..
· 에러일기
Rest docs와 PathVariable 문제점 발견 문제점 java.lang.IllegalArgumentException: urlTemplate not found. If you are using MockMvc did you use RestDocumentationRequestBuilders to build the request? 문제가 발생한 코드 @DisplayName("상세 게시글 페이지에서 좋아요(△, ▽) 버튼을 누를 수 있다.") @WithAuthUser(email = "test123@naver.com", role = "ROLE_USER") @Test void putFavorite() throws Exception { final int boardNumber = 1; mockMvc.perform..
· 에러일기
문제점 @Import(HttpEncodingAutoConfiguration.class) @ExtendWith(RestDocumentationExtension.class) public abstract class RestDocsSupport { protected MockMvc mockMvc; protected ObjectMapper objectMapper = new ObjectMapper(); @BeforeEach void setUp(RestDocumentationContextProvider provider) { this.mockMvc = MockMvcBuilders.standaloneSetup(initController()) .addFilters(new CharacterEncodingFilter("UTF-..
솜사탕코튼
'REST Docs' 태그의 글 목록