如何使用Spring集成TCP实现套接字重新连接?

时间:2017-05-04 17:04:11

标签: java spring sockets tcp spring-integration

在集成到TCP端点时,我们使用Spring集成TCP创建了一个应用程序,我们使用以下bean进行池化连接:

<!-- Pooled Connection factory -->
<int-ip:tcp-connection-factory id="client" type="client" host="${gateway.url}" port="${gateway.port}"
    single-use="true" so-timeout="${gateway.socket.timeout}" serializer="appSerializerDeserializer" deserializer="appSerializerDeserializer" />
<bean id="cachedClient" class="org.springframework.integration.ip.tcp.connection.CachingClientConnectionFactory">
    <constructor-arg ref="client" />
    <constructor-arg value="${gateway.pool.size}" />
</bean>

有没有人建议如何在套接字丢失连接的情况下实现套接字重新连接?

1 个答案:

答案 0 :(得分:1)

下次发送内容时会自动重新连接。