-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#259 중복된 요청에 대한 에러 처리 #260
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다!
혹시 strategy에 node-version은 왜 쓰신건지!!
@sohyundoh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
갑자기 궁금점 !
요고 Record로 바꾼 이유는?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
테스트 코드 작성하면서 request dto 만들겸 바꿨어
✒️ 관련 이슈번호
Key Changes 🔑
ASAP_Server/src/main/java/com/asap/server/common/interceptor/DuplicatedInterceptor.java
Lines 23 to 27 in 96556e8
To Reviewers 📢
테스트 코드
@WebMvcTest
를 통해 컨트롤러 테스트로 진행하려 했지만, 해당 테스트는 redis의 사용도 필요했기 때문에 인수 테스트가 적합하다고 생각해@SpringBootTest
로 작성했습니다.@SpringBootTest
에는 MockMvc를@Autowired
할 수 없기 때문에@AutoConfigureMockMvc
를 통해서 MockMvc를@Autowired
합니다.