Websocket ServerEndpoint instance by subprotocol
2022-09-01 17:53:21
基于这个问题,我想基于协商的子协议创建一个服务器端点实例,以不同的方式处理各种协议消息。不幸的是,[docs]不允许我访问任何相关的会话数据来获取协商的子protol,这样我就可以实例化不同的类。ServerEndpointConfig.Configurator.getEndpointInstance
public static class ServerEndpointConfigurator extends
ServerEndpointConfig.Configurator {
public ServerEndpointConfigurator()
{
}
@Override
public void modifyHandshake(ServerEndpointConfig config, HandshakeRequest request, HandshakeResponse response) {
// useful to work with session data in endpoint instance but not at getEndpointInstance
HttpSession httpSession = (HttpSession) request.getHttpSession();
config.getUserProperties().put(HttpSession.class.getName(), httpSession);
}
@Override
public <T> T getEndpointInstance(Class<T> endpointClass) throws InstantiationException {
// TODO get negotiated subprotocol and instantiate endpoint using switch case or factory
return (T) new WebSocketControllerA();
// or return (T) new WebSocketControllerB();
// or return (T) new WebSocketControllerC();
// ...
}
}
任何想法如何解决这个问题,或者是否有任何广泛接受的做法如何处理不同的子协议?我很难在 Web 上找到有关子协议处理的示例实现或高级文档。