RestTemplate Spring에서 제공하는 Rest Client 현재는 Deprecated되어 WebClient로 가이드를 하고 있다. NOTE: As of 5.0 this class is in maintenance mode, with only minor requests for changes and bugs to be accepted going forward. Please, consider using the org.springframework.web.reactive.client.WebClient which has a more modern API and supports sync, async, and streaming scenarios. 주의할 점은 없을까? 많은 요청들을 다루기 어렵다. RestTemplate는 기본적으로 Connection pool을 사용하지 않는다. Default로 java.net.HttpURLConnection 사용한다. SimpleClientHttpRequestFactory 그래서 많은 요
RestTemplate에 대해
RestTemplate Spring에서 제공하는 Rest Client 현재는 Deprecated되어 WebClient로 가이드를 하고 있다. NOTE: As of 5.0 this class is in maintenance mode, with only minor requests for changes and bugs to be accepted going forward. Please, consider using the org.springframework.web.reactive.client.WebClient which has a more modern API and supports sync, async, and streaming scenarios. 주의할 점은 없을까? 많은 요청들을 다루기 어렵다. RestTemplate는 기본적으로 Connection pool을 사용하지 않는다. Default로 java.net.HttpURLConnection 사용한다. SimpleClientHttpRequestFactory 그래서 많은 요
https://nesoy.github.io/