
Redirect URL에 쿼리 파라미터가 생기는 경우 1. 진행 상황 테스트를 하던 중 위와 같이 오류가 나왔다. 테스트 코드와 컨트롤러는 다음과 같다. @Test void 상품_등록_성공_테스트() throws Exception { //given MultiValueMap params= new LinkedMultiValueMap(); params.add("name", "test"); params.add("author", "test"); params.add("publisher", "test"); params.add("category", "NOVEL"); params.add("price", "15000"); params.add("stockQuantity", "999"); //when mvc.perform(p..