1. 16 1月, 2014 2 次提交
  2. 05 1月, 2014 2 次提交
  3. 03 1月, 2014 1 次提交
  4. 30 12月, 2013 2 次提交
  5. 19 12月, 2013 1 次提交
  6. 17 12月, 2013 2 次提交
  7. 09 12月, 2013 2 次提交
  8. 07 12月, 2013 1 次提交
  9. 03 12月, 2013 1 次提交
  10. 27 11月, 2013 3 次提交
  11. 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
  12. 20 11月, 2013 2 次提交
  13. 15 11月, 2013 1 次提交
  14. 05 11月, 2013 1 次提交
  15. 31 10月, 2013 3 次提交
  16. 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
  17. 26 10月, 2013 2 次提交
  18. 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
  19. 19 10月, 2013 1 次提交
  20. 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
  21. 16 10月, 2013 1 次提交
  22. 15 10月, 2013 2 次提交
  23. 12 10月, 2013 1 次提交
    • P
      Return rather than throw converted http exception · ca9df4d2
      Phillip Webb 提交于
      Fix HttpInvokerClientInterceptor.convertHttpInvokerAccessException to
      return the translated exception rather than throwing it. This brings
      the method implementation in line with the Java Doc and the obvious
      original intent.
      
      Issue: SPR-10965
      ca9df4d2
  24. 05 10月, 2013 3 次提交
    • J
      Comprehensive update to the framework's TimeZone handling, including a new... · 4574528a
      Juergen Hoeller 提交于
      Comprehensive update to the framework's TimeZone handling, including a new TimeZoneAwareLocaleContext and a LocaleContextResolver for Spring MVC
      
      A few noteworthy minor changes: LocaleContext.getLocale() may return null in special cases (not by default), which our own accessing classes are able to handle now. If there is a non-null TimeZone user setting, we're exposing it to all collaborating libraries, in particular to JSTL, Velocity and JasperReports. Our JSR-310 and Joda-Time support falls back to checking the general LocaleContext TimeZone now, adapting it to their time zone types, if no more specific setting has been provided. Our DefaultConversionService has TimeZone<->ZoneId converters registered. And finally, we're using a custom parseTimeZoneString method now that doesn't accept the TimeZone.getTimeZone(String) GMT fallback for an invalid time zone id anymore.
      
      Issue: SPR-1528
      4574528a
    • J
      Polishing · 52cca48f
      Juergen Hoeller 提交于
      52cca48f
    • J
      Marked Jackson 1.x support classes as deprecated · 8b3afda6
      Juergen Hoeller 提交于
      8b3afda6