设置RestTemplate的读取超时

问题描述 投票:1回答:1

我正在使用Spring RestTemplate从我的应用程序向不同的REST端点发出简单的POST请求。目前我在Spring配置文件中设置了readTimout,如下所示:

<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
    <constructor-arg>
        <bean class="org.springframework.http.client.HttpComponentsClientHttpRequestFactory">
            <property name="readTimeout" value="10000" />
            <property name="connectTimeout" value="10000"/>
        </bean>
    </constructor-arg>
</bean>

最近,我的任务是根据请求动态设置readTimout

我想我每次发出POST请求时都必须使用新的超时值将一个新的RequestFactory注入到restTemplate中,但这是否是一种可以接受的方法呢?有没有更好的办法?

spring rest timeout resttemplate
1个回答
0
投票

每次我发现我可以在HttpComponentsClientHttpRequestFactory对象上显式设置读取超时时,而不是将新的RequestFactory注入到restTemplate中。

((HttpComponentsClientHttpRequestFactory)restTemplate.getRequestFactory()).setReadTimeout(timeout)

© www.soinside.com 2019 - 2024. All rights reserved.