使用带有Spring Boot的Java API for WebSocket(JSR-356)

时间:2014-08-19 18:05:06

标签: java spring websocket spring-boot jsr356

我是Spring的新手(并在stackoverflow上提问)。

我想通过Spring Boot启动嵌入式(Tomcat)服务器并向其注册JSR-356 WebSocket端点。

这是主要方法:

@ComponentScan
@EnableAutoConfiguration
public class Server {
    public static void main(String[] args) {
        SpringApplication.run(Server.class, args);
    }
}

这是配置的外观:

@Configuration
public class EndpointConfig {

    @Bean
    public EchoEndpoint echoEndpoint() {
        return new EchoEndpoint();
    }

    @Bean
    public ServerEndpointExporter endpointExporter() {
        return new ServerEndpointExporter();
    } 
}

EchoEndpoint实施很简单:

@ServerEndpoint(value = "/echo", configurator = SpringConfigurator.class)
public class EchoEndpoint {

    @OnMessage
    public void handleMessage(Session session, String message) throws IOException {
        session.getBasicRemote().sendText("echo: " + message);
    }
}

对于第二部分,我已经关注了这篇博文:https://spring.io/blog/2013/05/23/spring-framework-4-0-m1-websocket-support

然而,当我运行应用程序时,我得到:

Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'endpointExporter' defined in class path resource [hello/EndpointConfig.class]: Initialization of bean failed; nested exception is java.lang.IllegalStateException: Failed to get javax.websocket.server.ServerContainer via ServletContext attribute

此异常还是由NullPointerException中的ServerEndpointExporter引起的,因为getServletContext上的applicationContext方法此时仍返回null

对Spring有更好理解的人可以帮助我吗?谢谢!

1 个答案:

答案 0 :(得分:7)

ServerEndpointExporter对应用程序上下文的生命周期做出一些假设,当您使用Spring Boot时,这些假设不会成立。具体来说,它假设在调用setApplicationContext时,在getServletContext上调用ApplicationContext将返回非空值。

您可以通过替换以下方法解决问题:

@Bean
public ServerEndpointExporter endpointExporter() {
    return new ServerEndpointExporter();
} 

使用:

@Bean
public ServletContextAware endpointExporterInitializer(final ApplicationContext applicationContext) {
    return new ServletContextAware() {

        @Override
        public void setServletContext(ServletContext servletContext) {
            ServerEndpointExporter serverEndpointExporter = new ServerEndpointExporter();
            serverEndpointExporter.setApplicationContext(applicationContext);
            try {
                serverEndpointExporter.afterPropertiesSet();
            } catch (Exception e) {
                throw new RuntimeException(e);
            }               
        }           
    };
}

这将延迟处理直到servlet上下文可用。

更新:您可能希望观看SPR-12109。一旦修复,就不再需要上述解决方法了。