검색결과 리스트
글
LANGUAGE/Java & Groovy
2016. 1. 26. 13:06
///// Spring (스프링)
///// RestTemplate
///// RestTemplate Timeout In Java (자바에서 RestTemplate 타임아웃 설정)
HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory();
factory.setReadTimeout(2000); //milliseconds
factory.setConnectionTimeout(2000); // milliseconds
RestTemplate restTemplate = new RestTemplate();
///// RestTemplate Timeout In Spring (스프링에서 RestTemplate 타임아웃설정)
<bean class="org.springframework.web.client.RestTemplate">
<constructor-arg>
<bean class="org.springframework.http.client.HttpComponentsClientHttpRequestFactory" p:readtimeout="2000" p:connecttimeout="2000">
</bean></constructor-arg>
</bean>
///// 참고
Spring RestTemplate timeout 지정: http://www.bboks.net/384
'LANGUAGE > Java & Groovy ' 카테고리의 다른 글
[Java] 날짜 비교 (0) | 2016.02.26 |
---|---|
[Java] Serialize & Deserialize (직렬화 & ??? ) (0) | 2016.02.07 |
[Groovy] 클로저(Closure) 만들기 (0) | 2016.01.24 |
[Groovy] each 클로저 break하기 (0) | 2016.01.24 |
[Groovy] with 객체 속성(필드) 한 번에 설정 (0) | 2016.01.22 |