Example usage for org.springframework.integration.websocket ServerWebSocketContainer ServerWebSocketContainer

List of usage examples for org.springframework.integration.websocket ServerWebSocketContainer ServerWebSocketContainer

Introduction

In this page you can find the example usage for org.springframework.integration.websocket ServerWebSocketContainer ServerWebSocketContainer.

Prototype

public ServerWebSocketContainer(String... paths) 

Source Link

Usage

From source file:com.nayidisha.slowglow.config.SpringMessagingConfig.java

@Bean
public ServerWebSocketContainer serverWebSocketContainer() {
    return new ServerWebSocketContainer("/ws").withSockJs();
}