1. 03 9月, 2013 1 次提交
    • R
      Refine destination semantics for msg-handling methods · 0ac6998e
      Rossen Stoyanchev 提交于
      After this change, annotated message handling methods configured to use
      a destination prefix (e.g. "/app") no longer have to include the prefix
      in their mapping. For example if a client sends a message to "/app/foo"
      the annotated methods should be mapped with @MessageMapping("/foo").
      0ac6998e
  2. 03 8月, 2013 1 次提交
  3. 28 6月, 2013 1 次提交
  4. 17 5月, 2013 1 次提交
  5. 15 5月, 2013 1 次提交
  6. 03 5月, 2013 2 次提交
    • R
      Refactor packages · 97d225ba
      Rossen Stoyanchev 提交于
      org.springframework.websocket  -> org.springframework.web.socket
      org.springframework.sockjs     -> org.springframework.web.socket.sockjs
      
      Flatten .sockjs and .sockjs.server
      97d225ba
    • R
      Add WebSocketSession attributes + initialization · 2a7935a9
      Rossen Stoyanchev 提交于
      In addition to adding the attributes, there is now mechanism for
      initializing WebSocketSession instances from attributes of the
      handshake request.
      2a7935a9
  7. 02 5月, 2013 1 次提交
    • R
      Update exception handling · 166ca7a5
      Rossen Stoyanchev 提交于
      Allow WebSocketHandler methods to raise an exception.
      
      By default we install ExceptionWebSocketHandlerDecorator, which logs
      unhandled exceptions and closes the session. That decorator can be
      extended or replaced.
      
      Any exceptions that remain unhandled still (i.e. no exception handling
      decorator), are caught in the lowest level before propagating to the
      WebSocket engine or a SockJS transport handler and handled the same
      way. That means default behavior is guaranteed but also fully
      customizable.
      166ca7a5
  8. 30 4月, 2013 1 次提交
  9. 27 4月, 2013 2 次提交