1. 26 11月, 2013 1 次提交
    • R
      Add SubProtocolCapable interface · 4e82416b
      Rossen Stoyanchev 提交于
      The addition of SubProtocolCapable simplifies configuration since it is
      no longer necessary to explicitly configure DefaultHandshakeHandler
      with a list of supported sub-protocols. We will not also check if the
      WebSocketHandler to use for the WebSocket request is an instance of
      SubProtocolCapable and obtain the list of sub-protocols that way. The
      provided SubProtocolWebSocketHandler does implement this interface.
      
      Issue: SPR-11111
      4e82416b
  2. 24 11月, 2013 1 次提交
    • R
      Consolidate websocket/messaging code · 4de3291d
      Rossen Stoyanchev 提交于
      Before this change spring-messaging contained a few WebSocket-related
      classes including WebSocket sub-protocol support for STOMP as well
      as @EnableWebSocketMessageBroker and related configuration classes.
      
      After this change those classes are located in the spring-websocket
      module under org.springframework.web.socket.messaging.
      
      This means the following classes in application configuration must
      have their packages updated:
      
      org.springframework.web.socket.messaging.config.EnableWebSocketMessageBroker
      org.springframework.web.socket.messaging.config.StompEndpointRegistry
      org.springframework.web.socket.messaging.config.WebSocketMessageBrokerConfigurer
      
      MessageBrokerConfigurer has been renamed to MessageBrokerRegistry and
      is also located in the above package.
      4de3291d