我有一个简单的@Startup 服务,带有包含一系列 websocket 连接创建的 @PostConstruct 方法:
public void connect(String uri, int timeOut) throws Exception {
WebSocketContainer container = ContainerProvider.getWebSocketContainer();
ClientEndpointConfig config = Builder.create().build();
config.getUserProperties().put("io.undertow.websocket.CONNECT_TIMEOUT", timeOut);
container.connectToServer(this.endpoint, config, new URI(uri));
}
在某些时候 connectToServer 调用失败并显示 ClosedChannelException
。就代码逻辑而言,原因很简单,但我不知道如何解决:Wildfly suspend 导致 ServerWebSocketContainer::pause
被调用
public synchronized void pause(PauseListener listener) {
closed = true;
...
而 ServerWebSocketContainer::connectToServer
以我能想象到的最糟糕的方式处理这种行为:)
public Session connectToServer(final Endpoint endpointInstance, final ClientEndpointConfig config, final URI path) throws DeploymentException, IOException {
if(closed) {
throw new ClosedChannelException();
}
...
在新线程中执行 10-15 秒的延迟是没有意义的 - 也许 ContainerProvider.getWebSocketContainer()
导致了低流扩展加载,然后是 UndertowDeploymentInfoService::suspend