작성자 없음
작성자 정보가 삭제된 글입니다.
작성
·
913
답변 2
0
안녕하세요, Dev_ch님! :)
확인해보니 말씀하신 requestCookies()는 3.0 버전부터 추가된 스펙이네요. (관련 문서)
현재 버전에서 가장 간단하게는, 다음과 같이 요청에 쿠키를 실어서 Request Snippet에 표시해 주는 방법이 있을 것 같고요.
mockMvc.perform(
get("/api/v1/products/selling")
.cookie(new Cookie("key", "value"))
)
추가적인 명시를 원하신다면 TemplatedSnippet
을 사용해서 custom한 Snippet을 만들어보는 방법도 있을 것 같아요 ㅎㅎ
원하시는 방향으로 잘 적용되면 좋겠네요!
감사합니다. :)
0
Hi,
Given the information you have provided, it is difficult to provide a specific solution. However, I would recommend checking if there are any updates or changes to the RestDocs documentation that may be applicable to your project's version of SpringBoot. Additionally, you may want to consider seeking help from a SpringBoot community or support forum to see if someone has encountered a similar issue and has found a solution.