1. 23 1月, 2014 1 次提交
  2. 21 1月, 2014 2 次提交
  3. 16 1月, 2014 4 次提交
  4. 05 1月, 2014 2 次提交
  5. 03 1月, 2014 1 次提交
  6. 30 12月, 2013 2 次提交
  7. 19 12月, 2013 1 次提交
  8. 17 12月, 2013 2 次提交
  9. 09 12月, 2013 2 次提交
  10. 07 12月, 2013 1 次提交
  11. 03 12月, 2013 1 次提交
  12. 27 11月, 2013 3 次提交
  13. 26 11月, 2013 2 次提交
    • E
      Fix various typos · e9f78f60
      Eric Dahl 提交于
      Fix a variety of typos throughout the project, primarily in
      comments (javadoc or otherwise) but also in a handful of log messages
      and a couple exception messages.
      
      ISSUE: SPR-11123
      e9f78f60
    • 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
  14. 20 11月, 2013 2 次提交
  15. 15 11月, 2013 1 次提交
  16. 05 11月, 2013 1 次提交
  17. 31 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. 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
  21. 19 10月, 2013 1 次提交
  22. 18 10月, 2013 1 次提交
    • B
      Add new features on @ControllerAdvice · c4a8bf9c
      Brian Clozel 提交于
      Prior to this commit, @ControllerAdvice annotated beans would
      assist all known Controllers, by applying @ExceptionHandler,
      @InitBinder, and @ModelAttribute.
      
      This commit updates the @ControllerAdvice annotation,
      which accepts now base package names, assignableTypes,
      annotations and basePackageClasses.
      
      If attributes are set, only Controllers that match those
      selectors will be assisted by the annotated class.
      This commit does not change the default behavior when
      no value is set, i.e. @ControllerAdvice().
      
      Issue: SPR-10222
      c4a8bf9c
  23. 16 10月, 2013 1 次提交
  24. 15 10月, 2013 1 次提交
    • J
      Autowiring of generic types · 3bd6dfe0
      Juergen Hoeller 提交于
      Includes revisions of MethodParameter and DependencyDescriptor (in particular towards a reference to the containing class). Also refines several ResolvableType method signatures.
      
      Issue: SPR-9965
      3bd6dfe0