1. 08 5月, 2015 1 次提交
    • S
      Support arbitrary levels of meta-annotations in TypeDescriptor · 04d6afe5
      Sam Brannen 提交于
      Prior to this commit, the `getAnnotation()` method in `TypeDescriptor`
      only supported a single level of meta-annotations. In other words, the
      annotation hierarchy would not be exhaustively searched.
      
      This commit provides support for arbitrary levels of meta-annotations
      in `TypeDescriptor` by delegating to `AnnotationUtils.findAnnotation()`
      within `TypeDescriptor.getAnnotation()`.
      
      Issue: SPR-12793
      04d6afe5
  2. 08 3月, 2015 1 次提交
  3. 26 2月, 2015 1 次提交
  4. 24 2月, 2015 1 次提交
    • S
      Add converter support for Stream · 018adb04
      Stephane Nicoll 提交于
      Add StreamConverter to provide full support for converting
      java.util.stream.Stream instances to and from collections or arrays.
      
      Also attempt to convert the element type if necessary.
      
      StreamConverter is registered by default in the DefaultConversionService
      as long as Java8 is available.
      
      Issue: SPR-12175
      018adb04
  5. 31 12月, 2014 1 次提交
  6. 30 11月, 2014 1 次提交
  7. 02 11月, 2014 1 次提交
  8. 07 10月, 2014 1 次提交
  9. 24 7月, 2014 1 次提交
  10. 15 7月, 2014 1 次提交
  11. 25 6月, 2014 1 次提交
  12. 26 3月, 2014 1 次提交
  13. 06 3月, 2014 1 次提交
    • J
      Restored proper handling of varargs in case of unresolvable type variable · 2a2816df
      Juergen Hoeller 提交于
      Fixed through falling back to the raw parameter type in the TypeDescriptor(MethodParameter) constructor, properly detecting the vararg array even in case of an unresolvable type variable, and through restoring getElementTypeDescriptor's original behavior for arrays, i.e. always returning a non-null descriptor.
      
      Issue: SPR-11494
      2a2816df
  14. 01 2月, 2014 1 次提交
  15. 30 1月, 2014 1 次提交
  16. 29 1月, 2014 1 次提交
  17. 24 1月, 2014 1 次提交
  18. 18 1月, 2014 1 次提交
  19. 20 12月, 2013 1 次提交
  20. 18 12月, 2013 1 次提交
  21. 26 10月, 2013 1 次提交
    • P
      Add getSource() to ResolvableType & TypeDescriptor · e80b7d1e
      Phillip Webb 提交于
      Add getSource() method to ResolvableType and TypeDescriptor allowing
      access to the underlying source field or method parameter when possible.
      
      Primarily added to provide access to additional type information or
      meta-data that alternative JVM languages may provide.
      
      Issue: SPR-10887
      e80b7d1e
  22. 19 10月, 2013 1 次提交
  23. 18 10月, 2013 1 次提交
  24. 24 7月, 2013 1 次提交
  25. 14 5月, 2013 1 次提交
  26. 23 1月, 2013 2 次提交
    • S
      Polish Javadoc in TypeDescriptor · a1aba23a
      Sam Brannen 提交于
      - fix @since version in array()
      - format method-level Javadoc
      - unescape HTML-escaped angle brackets with {@code} blocks
      a1aba23a
    • P
      Allow TypeDescriptor array construction · 9c032d52
      Phillip Webb 提交于
      Add a static factory method that can be used to create an array
      TypeDescriptor with a specific element type. Allows array types
      with generic elements to be constructed.
      
      Issue: SPR-9792
      9c032d52
  27. 29 12月, 2012 1 次提交
  28. 31 10月, 2012 1 次提交
  29. 30 10月, 2012 2 次提交
    • C
      Review and polish pull request #132 · 222eec58
      Chris Beams 提交于
      Content:
      
       - Rename Conditional{Conversion=>Converter}
       - Add @since tags where appropriate
       - Update Apache date headers to read 2002-2012 (not just 2012)
       - Correct minor Javadoc typo
      
      Style:
      
       - Polish line breaks / whitespace
       - Use wildcard static imports where appropriate
      
      Issue: SPR-9566, SPR-9692, SPR-9928, SPR-9927
      222eec58
    • P
      Refactor GenericConversionService · 4dc28959
      Phillip Webb 提交于
      Refactor internal workings of GenericConversionService in order to
      better support future enhancements. This commit should not affect
      existing behavior.
      
      Issue: SPR-9927
      4dc28959
  30. 11 10月, 2012 2 次提交
  31. 30 4月, 2012 1 次提交
    • S
      Fix javadoc warnings · effb7625
      Stevo Slavic 提交于
      Before this change there were numerous javadoc warnings being reported
      while building Spring framework API.
      
      This commit resolves most of the javadoc warnings, reducing the total
      number from 265 to 103.
      
      Issue: SPR-9113
      effb7625
  32. 31 1月, 2012 1 次提交
    • C
      Rename modules {org.springframework.*=>spring-*} · 02a4473c
      Chris Beams 提交于
      This renaming more intuitively expresses the relationship between
      subprojects and the JAR artifacts they produce.
      
      Tracking history across these renames is possible, but it requires
      use of the --follow flag to `git log`, for example
      
          $ git log spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history up until the renaming event, where
      
          $ git log --follow spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history for all changes to the file, before and after the
      renaming.
      
      See http://chrisbeams.com/git-diff-across-renamed-directories
      02a4473c
  33. 08 12月, 2011 1 次提交
  34. 02 12月, 2011 1 次提交
  35. 29 11月, 2011 1 次提交
  36. 12 10月, 2011 1 次提交
  37. 26 7月, 2011 1 次提交