문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
springframework:resttemplate [2020/06/26 10:05] kwon37xi |
springframework:resttemplate [2022/01/14 15:43] (현재) kwon37xi |
||
|---|---|---|---|
| 줄 3: | 줄 3: | ||
| * [[http:// | * [[http:// | ||
| * [[http:// | * [[http:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * see [[springframework: | ||
| ===== HttpEntity ===== | ===== HttpEntity ===== | ||
| 줄 65: | 줄 68: | ||
| restTemplate.setRequestFactory(new BufferingClientHttpRequestFactory(new SimpleClientHttpRequestFactory())); | restTemplate.setRequestFactory(new BufferingClientHttpRequestFactory(new SimpleClientHttpRequestFactory())); | ||
| restTemplate.setInterceptors(Lists.newArrayList(new RestTemplateLoggingInterceptor())); | restTemplate.setInterceptors(Lists.newArrayList(new RestTemplateLoggingInterceptor())); | ||
| + | </ | ||
| + | |||
| + | ===== SpringBoot ===== | ||
| + | * with [[springframework: | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | * '' | ||
| + | |||
| + | <code java> | ||
| + | @Bean | ||
| + | public RestTemplate restTemplate(RestTemplateBuilder restTemplateBuilder) { | ||
| + | return restTemplateBuilder | ||
| + | .requestFactory(() -> new BufferingClientHttpRequestFactory(new SimpleClientHttpRequestFactory())) | ||
| + | .setConnectTimeout(Duration.ofMillis(5000)) // connection-timeout | ||
| + | .setReadTimeout(Duration.ofMillis(5000)) // read-timeout | ||
| + | .additionalMessageConverters(new StringHttpMessageConverter(Charset.forName(" | ||
| + | .build(); | ||
| + | } | ||
| </ | </ | ||
| ===== 참조 ===== | ===== 참조 ===== | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||