我有一个使用spring-boot-starter-tomcat的spring boot应用程序。我正在尝试在应用程序类中添加自定义websocket端点。
为此,我尝试使用以下内容检索ServerContainer
:
ServerContainer container = (ServerContainer)servletContext.getAttribute(ServerContainer.class.getName());
但是,即使tomcat服务器似乎出现在spring boot应用程序中,容器也是null。
有没有办法在spring启动应用程序中初始化javax.websocket.server.ServerContainer?