无法从Spring Boot(Tomcat应用程序)中的ServletContext检索javax.websocket.server.ServerContainer

时间:2016-09-28 02:41:21

标签: spring-boot websocket tomcat8

我有一个使用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?

0 个答案:

没有答案