1. 30 12月, 2013 1 次提交
  2. 24 12月, 2013 1 次提交
  3. 20 12月, 2013 1 次提交
  4. 10 12月, 2013 1 次提交
  5. 03 12月, 2013 2 次提交
    • P
      Add a 'bill of materials' project for Maven users · 92e144a8
      Phillip Webb 提交于
      Add 'spring-framework-bom' meta-project that contains the other projects
      in a dependencyManagement section.
      
      Issue: SPR-11138
      92e144a8
    • B
      Add XML namespace for WebSocket config · 10f5d96a
      Brian Clozel 提交于
      This commit adds an XML namespace equivalent of @EnableWebSocket and
      @EnableWebSocketMessageBroker. Those are <websocket:handlers> and
      <websocket:message-broker> respectively.
      
      Examples can be found in the test suite.
      
      This commit also alters the way MessageHandler's subscribe to their
      respective MessageChannel's of interest. Rather than performing the
      subscriptions in configuration code, the message channels are now
      passed into MessageHandler's so they can subscribe themselves on
      startup.
      
      Issue: SPR-11063
      10f5d96a
  6. 27 11月, 2013 1 次提交
  7. 26 11月, 2013 1 次提交
    • P
      Fix remaining compiler warnings · 59002f24
      Phillip Webb 提交于
      Fix remaining Java compiler warnings, mainly around missing
      generics or deprecated code.
      
      Also add the `-Werror` compiler option to ensure that any future
      warnings will fail the build.
      
      Issue: SPR-11064
      59002f24
  8. 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
  9. 22 11月, 2013 1 次提交
    • P
      Upgrade to HSQLDB 2.3.1 · d9c44704
      Phillip Webb 提交于
      Replace `hsqldb:hsqldb:1.8.0.10` with `org.hsqldb:hsqldb:2.3.1` and
      fix breaking tests.
      
      Issue: SPR-10947
      d9c44704
  10. 21 11月, 2013 3 次提交
  11. 20 11月, 2013 4 次提交
  12. 15 11月, 2013 2 次提交
  13. 13 11月, 2013 1 次提交
  14. 06 11月, 2013 1 次提交
  15. 05 11月, 2013 1 次提交
  16. 31 10月, 2013 1 次提交
  17. 30 10月, 2013 3 次提交
  18. 29 10月, 2013 1 次提交
    • R
      Update WebSocket extensions change · 81dda069
      Rossen Stoyanchev 提交于
      - add WebSocketHttpHeaders
      - client-side support for WebSocket extensions
      - DefaultHandshakeHandler updates
      - replace use of ServletAttributes in JettyRequestUpgradeStratey
      - upgrade spring-web to jetty 9.0.5
      81dda069
  19. 26 10月, 2013 2 次提交
  20. 25 10月, 2013 2 次提交
  21. 23 10月, 2013 1 次提交
  22. 22 10月, 2013 2 次提交
    • R
      Integrate suggested support for creating MVC URLs · bafc73f1
      Rossen Stoyanchev 提交于
      The key contract is MvcUrls. An instance is automatically created with
      the Spring MVC namespace and the MVC Java config but can also be easily
      created in any configuration.
      
      Some example tests can be found in DefaultMvcUrlsTests.
      
      Issue: SPR-10665, SPR-8826
      bafc73f1
    • O
      Introduced MvcUriComponentsBuilder to create URIs pointing to controller methods. · 4fd27b12
      Oliver Gierke 提交于
      MvcUriComponentsBuilder allows creating URIs that point to Spring MVC
      controller methods annotated with @RequestMapping. It builds them by
      exposing a mock method invocation API similar to Mockito, records the
      method invocations and thus builds up the URI by inspecting the mapping
      annotations and the parameters handed into the method invocations.
      
      Introduced a new SPI UriComponentsContributor that should be implemented 
      by HandlerMethodArgumentResolvers that actually contribute path segments 
      or query parameters to a URI. While the newly introduced 
      MvcUriComponentsBuilder looks up those UriComponentsContributor instances 
      from the MVC configuration.
      
      The MvcUriComponentsBuilderFactory (name to be discussed - MvcUris maybe?) 
      prevents the multiple lookups by keeping the UriComponentsBuilder 
      instances in an instance variable. So an instance of the factory could 
      be exposed as Spring bean or through a HandlerMethodArgumentResolver to 
      be injected into Controller methods.
      
      Issue: SPR-10665, SPR-8826
      4fd27b12
  23. 19 10月, 2013 1 次提交
  24. 18 10月, 2013 3 次提交
  25. 08 10月, 2013 2 次提交