1. 14 12月, 2015 1 次提交
  2. 05 12月, 2015 2 次提交
  3. 03 12月, 2015 1 次提交
  4. 02 12月, 2015 1 次提交
  5. 15 11月, 2015 1 次提交
  6. 15 10月, 2015 1 次提交
  7. 14 10月, 2015 1 次提交
  8. 13 10月, 2015 2 次提交
  9. 07 10月, 2015 1 次提交
  10. 22 9月, 2015 1 次提交
  11. 26 8月, 2015 1 次提交
  12. 13 8月, 2015 1 次提交
  13. 30 7月, 2015 1 次提交
  14. 06 7月, 2015 1 次提交
    • R
      Avoid duplicates from <websocket:decorator-factory> · 3eb54cc0
      Rossen Stoyanchev 提交于
      Before this change <websocket:decorator-factory> decorated to
      the SubProtocolWebSocketHandler RootBeanDefinition rather than
      using a RuntimeBeanReference, which led to a separate instance
      of SubProtocolWebSocketHandler to be created.
      
      Issue: SPR-13190
      3eb54cc0
  15. 24 5月, 2015 2 次提交
  16. 23 5月, 2015 1 次提交
  17. 13 5月, 2015 1 次提交
  18. 04 5月, 2015 1 次提交
  19. 01 4月, 2015 1 次提交
    • B
      Fix client-library-url ignored in MVC namespace · e2a55ced
      Brian Clozel 提交于
      Prior to this commit, the `client-library-url` XML attribute was not
      effective in the MVC namespace, leaving the default value configured:
      
      ```xml
      <websocket:sockjs client-library-url="/js/sockjs.js" />
      ```
      
      This commit fixes the sockjs namespace handler and makes sure that this
      attribute is configured on the `SockJsService` Bean to be created.
      
      Issue: SPR-12874
      e2a55ced
  20. 25 3月, 2015 1 次提交
  21. 28 2月, 2015 1 次提交
  22. 19 2月, 2015 5 次提交
  23. 17 2月, 2015 1 次提交
    • R
      Pass SockJS session attributes to HandshakeHandler · f398dd03
      Rossen Stoyanchev 提交于
      Before this change the WebSocketTransportHandler passed
      Collections.emptyMap as attributes to the HandshakeHandler because
      it didn't matter what attributes the underlying WebSocketSession has
      since it is wrapped by the SockJsSession and that's what exposed for
      use everywhere.
      
      This change has the WebSocketTransportHandler passing the attributes
      from the SockJsSession instead since it's more accurate for the
      underlying WebSocketSession to have access to the same map instance
      and it allows the HandshakeHandler to change the attributes even if
      it doesn't need to do that today.
      
      Issue: SPR-12716
      f398dd03
  24. 23 1月, 2015 1 次提交
  25. 30 12月, 2014 1 次提交
  26. 24 12月, 2014 1 次提交
  27. 08 12月, 2014 1 次提交
  28. 06 12月, 2014 1 次提交
    • S
      Add support for autowiring Jackson handlers · 2fccf3ff
      Sebastien Deleuze 提交于
      This commit introduces the SpringHandlerInstantiator
      class, a Jackson HandlerInstantiator that allows to autowire
      Jackson handlers (JsonSerializer, JsonDeserializer, KeyDeserializer,
      TypeResolverBuilder and TypeIdResolver) if needed.
      
      SpringHandlerInstantiator is automatically used with
      @EnableWebMvc and <mvc:annotation-driven />.
      
      Issue: SPR-10768
      2fccf3ff
  29. 03 12月, 2014 2 次提交
    • S
      Use Jackson improved default configuration everywhere · fbd85925
      Sebastien Deleuze 提交于
      With this commit, Jackson builder is now used in spring-websocket
      to create the ObjectMapper instance.
      
      It is not possible to use the builder for spring-messaging
      and spring-jms since these modules don't have a dependency on
      spring-web, thus they now just customize the same features:
       - MapperFeature#DEFAULT_VIEW_INCLUSION is disabled
       - DeserializationFeature#FAIL_ON_UNKNOWN_PROPERTIES is disabled
      
      Issue: SPR-12293
      fbd85925
    • R
      Check the user of a SockJS request · dc5b5ca8
      Rossen Stoyanchev 提交于
      Issue: SPR-12497
      dc5b5ca8
  30. 29 11月, 2014 1 次提交
  31. 28 11月, 2014 1 次提交
  32. 24 11月, 2014 1 次提交
    • B
      Add undertow 1.1.0.Final support · bb150c47
      Brian Clozel 提交于
      Upgrade undertow dependency to 1.1.0.Final.
      Add support for undertow 1.1.0.Final in the
      UndertowRequestUpgradeStrategy, after a breaking change in the
      `io.undertow.websockets.jsr.ConfiguredServerEndpoint` constructor.
      
      Issue: SPR-12302
      bb150c47