欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

dfdfdf

程序员文章站 2022-03-06 13:34:51
...
<!--连接池管理  -->
<bean id="proxyPollingConnectionManager"
class="org.apache.http.impl.conn.PoolingHttpClientConnectionManager">
<property name="maxTotal" value="${proxy.http.maxTotal}" />
<property name="defaultMaxPerRoute" value="${proxy.http.maxPerRoute}" />

</bean>

<!-- 连接池信息 -->
<bean id="httpClientUtil" class="com.pingan.ff.esb.proxy.common.http.HttpClientUtil">
<property name="httpConfig" ref="proxyHttpConfig" />
<property name="cm" ref="proxyPollingConnectionManager" />
</bean>

<!-- 远程服务信息 -->
<bean id="proxyHttpConfig" class="com.pingan.ff.esb.proxy.common.config.HttpConfig">
<property name="socketTimeOut" value="${proxy.http.socketTimeOut}" />
<property name="connectionTimeOut" value="${proxy.http.connectionTimeOut}" />
<property name="maxPerRoute" value="${proxy.http.maxPerRoute}" />
<property name="usePoolEnable" value="${proxy.http.usePool.enable}" />
</bean>
相关标签: bean

推荐阅读