我在我的一个应用程序中使用春季集成与银行通信。在重负载上,我们会遇到错误" org.springframework.messaging.messagingexception:SSL握手花费太长。银行要求我们将超时为90秒。虽然查看TCPniosslConnection类的代码,但我发现30秒是硬编码。
private HandshakeStatus waitForHandshakeData(SSLEngineResult result,
HandshakeStatus status) thr`enter code here`ows IOException {
try {
if (logger.isTraceEnabled()) {
logger.trace("Writer waiting for handshake");
}
if (!TcpNioSSLConnection.this.semaphore.tryAcquire(30, TimeUnit.SECONDS)) {
throw new MessagingException("SSL Handshaking taking too long");
}
if (logger.isTraceEnabled()) {
logger.trace("Writer resuming handshake");
}
status = runTasksIfNeeded(result);
}
catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new MessagingException("Interrupted during SSL Handshaking");
}
return status;
}
如果有任何方法可以增加SSL握手超时
,请建议我下面是我的春季集成连接工厂配置
<int-ip:tcp-connection-factory id="client"
type="client" port="${cbs.third.party.port}" host="${cbs.third.party.host}"
single-use="true" using-nio="true" deserializer="javaDeserializer"
serializer="javaSerializer" ssl-context-support="sslContextSupport" task-executor="myTaskExecutor"/>
谢谢Rohit
当前无法配置该超时;我已经打开了一个Jira问题。
您可以尝试将use-nio
设置为false
;除非您在长时间内打开很多插座,否则通常不需要。