HttpMediaTypeNotAcceptableException: No acceptable representation [406에러]1 HttpMediaTypeNotAcceptableException: No acceptable representation [406에러] 액세스 토큰 발급 테스트 코드 작성 중에 처음으로 406이란 에러를 발견했다. HttpMediaTypeNotAcceptableException 예외는 클라이언트가 요청한 미디어 타입이 서버에서 제공할 수 없을 때 발생한다. //when ResultActions resultActions = mockMvc.perform(post(url) .contentType(MediaType.APPLICATION_JSON_VALUE) .content(requestBody)); //then resultActions .andExpect(status().isCreated()) //에러 난 부분 .andExpect(jsonPath("$.accessToken").isNotEmpty()); 미디어 타입은 잘 설정했는데 컨트롤러에서 .. 2023. 10. 10. 이전 1 다음