Wildfly 挂起导致 undertow websocket 连接失败

时间:2021-06-17 13:14:24

标签: wildfly undertow suspend

我有一个简单的@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();
        }
        ...
  1. 如何等待 undertow 完全加载?
  2. 如何在 ServletContextListener 中注入 @Ejb 类来移动 contextInitialized 中的任务?
  3. 或者也许使用 jersey ApplicationEventListener?

在新线程中执行 10-15 秒的延迟是没有意义的 - 也许 ContainerProvider.getWebSocketContainer() 导致了低流扩展加载,然后是 UndertowDeploymentInfoService::suspend

0 个答案:

没有答案