Issue (1) 썸네일형 리스트형 webclient로 json파싱할 때 주의할 점 아래와 같은 코드로 json response를 responseType 클래스에 대입하였음 //url로 요청 보내고 T타입 객체 받아옴 //Mono객체가 멀티스레딩에 유리함 public T getCustom(String baseUrl, String path, Object paramForm, Class responseType) { String url =makeRiotRequestUrl(baseUrl, path, paramForm); log.info("riot api request = {}",url); return WebClient.builder().build().get().uri(url) .accept(MediaType.APPLICATION_JSON) .retrieve() .bodyToMono(respons.. 이전 1 다음