1. 15 5月, 2019 3 次提交
  2. 13 5月, 2019 1 次提交
  3. 12 5月, 2019 1 次提交
  4. 11 5月, 2019 1 次提交
  5. 09 5月, 2019 3 次提交
    • P
      Migrate to BDD Mockito · 798b51f4
      Phillip Webb 提交于
      Migrate all tests to consistently use BDD Mockito. Also add
      checksyle rule to enforce going forwards.
      798b51f4
    • P
      Remove '.*' imports from tests · 816bbee8
      Phillip Webb 提交于
      Organize test imports to expand all '.*' static imports into
      fully qualified imports.
      
      This update will allow us to use additional checkstyle rules in
      the future, and will also help if we migrate fully to AssertJ.
      816bbee8
    • P
      Delete unused Matchers class · 66eb86f0
      Phillip Webb 提交于
      Delete the `Matches` class since it's no longer being used.
      66eb86f0
  6. 08 5月, 2019 16 次提交
    • J
      Revise LinkedCaseInsensitiveMap's lazy key/value/entry collections · fb290886
      Juergen Hoeller 提交于
      Closes gh-22926
      fb290886
    • P
      Migrate away from ExpectedException (#22922) · d7320de8
      Phil Webb 提交于
      * Add limited checkstyles to test code
      
      Add a limited set of checkstyle rules to the test codebase to improve
      code consistency.
      
      * Fix checksyle violations in test code
      
      * Organize imports to fix checkstyle for test code
      
      * Migrate to assertThatExceptionOfType
      
      Migrate aware from ExpectedException rules to AssertJ exception
      assertions. Also include a checkstyle rules to ensure that the
      the ExpectedException is not accidentally used in the future.
      
      See gh-22894
      d7320de8
    • J
      Nullability refinements and related polishing · c5b38483
      Juergen Hoeller 提交于
      Includes fix for typo in visitor class names.
      
      See gh-22909
      c5b38483
    • P
      Deprecate StandardMetadata constructors · 7031964e
      Phillip Webb 提交于
      Deprecate the public `StandardMetadata` constructors to make it clearer
      that these classes should not be instantiated directly. A new
      `AnnotationMetadata.introspect` factory method has been added which
      can now be used to obtain instances.
      
      This change will allow use to make the constructors package private
      and drop the `nestedAnnotationsAsMap` parameter in a future release.
      
      Closes gh-22906
      7031964e
    • P
      Add SimpleAnnotationMeta classes and readers · 7fbf3f97
      Phillip Webb 提交于
      Replace the existing ASM based readers with new implementations that
      also support MergedAnnotations. The meta-data classes themselves are
      now immutable, and constructed via separate reader classes.
      
      The `SimpleMetadataReader` class has been updated to return the new
      classes, however the old ones remain since some of them are public
      and might be being used directly.
      
      Closes gh-22884
      7fbf3f97
    • P
      Add MergedAnnotations support to meta-data classes · 8c2ccfe6
      Phillip Webb 提交于
      Add `AnnotatedTypeMetaData.getAnnotations()` that can be used to access
      annotation details using the `MergedAnnotations` interface.
      
      Where possible, the existing annotation methods have been migrated to
      call `getAnnotation()`, rather than needing their own implementation.
      
      The existing ASM based meta-data implementations have not been updated
      since they will be deprecated and replaced in a subsequent commit.
      
      See gh-22884
      8c2ccfe6
    • P
      Reduce meta-data code duplicate with default methods · 30ba80a3
      Phillip Webb 提交于
      Extract and pull-up some common method implementations and make them
      default methods of the interface.
      
      See gh-22884
      30ba80a3
    • P
      Add additional class/method meta-data tests · f592c1f2
      Phillip Webb 提交于
      Add some additional tests to provide more coverage of class and method
      meta-data support.
      
      See gh-22884
      f592c1f2
    • P
      Use ReflectionUtils to get declared methods · 9738e488
      Phillip Webb 提交于
      Update `StandardAnnotationMetadata` to use `ReflectionUtils` when
      obtaining declared methods. This update is primarily so that the common
      method cache can be used.
      
      Closes gh-22907
      9738e488
    • P
      Skip java.lang.annotations when reading metadata · 1fa59378
      Phillip Webb 提交于
      Update `StandardAnnotationMetadata` and `AnnotationMetadataReadingVisitor`
      so that `java.lang.annotation` annotations are consistently skipped.
      
      Closes gh-22885
      1fa59378
    • P
      Don't expose RetentionPolicy.CLASS annotations · 8a293f51
      Phillip Webb 提交于
      Update ASM based metadata readers so that only RetentionPolicy.RUNTIME
      annotations are exposed. This aligned behavior with the reflection based
      implementation.
      
      Closes gh-22886
      8a293f51
    • P
      Add MergedAnnotations.of method · 9d6cf57c
      Phillip Webb 提交于
      Add a factory method to `MergedAnnotation` that allows an instance to
      be created for an explicit collection of root annotations. This method
      will allow ASM based readers to expose a `MergedAnnotation` instance
      that has root annotations loaded from bytecode, and meta-annotations
      loaded using reflection.
      
      See gh-22884
      9d6cf57c
    • P
      Support String->Class adaptation in MergedAnnotation · daec3531
      Phillip Webb 提交于
      Update TypeMappedAnnotation so that Strings can be used to represent
      Class attribute values. This will allow ASM annotation readers to
      present a `MergedAnnotation` instance without necessarily having the
      actual class values on the classpath.
      
      When the underlying value is a String, any calls to
      `getValue(name, String.class)` or `asMap(Adapt.CLASS_TO_STRING)` will
      simply return the original String. Calls that need the actual Class
      result (such as `getClass`) will use `Class.forName` and may throw
      a `ClassNotFoundException` at that point.
      
      This commit also allows an empty Object[] to be used to represent
      any empty primitive array.
      
      See gh-22884
      daec3531
    • P
      Polishing MergedAnnotation code · e11990e6
      Phillip Webb 提交于
      e11990e6
    • P
      Rename some MergedAnnotation `from` methods to `of` · d4a761ab
      Phillip Webb 提交于
      Rename `from` to `of` for the `MergedAnnotation` factory methods that
      work with Maps. The previous name was a little confusing, especially
      when an annotation source parameter was specified. The new method name
      helps to make it clearer when the user is explicitly defining the
      attributes of the annotation, as opposed to picking them up from the
      source.
      d4a761ab
    • P
      Add MergedAnnotation.getTypeHierarchy method · 3b145a5a
      Phillip Webb 提交于
      Add a `getTypeHierarchy()` method to `MergedAnnotation` that can be used
      to return the full type hierarchy information. This method is
      specifically designed to be used in combination with
      `MergedAnnotationPredicates.unique`.
      
      This update also allows us to delete the `parentAndType` method
      from `AnnotatedElementUtils`.
      
      Closes gh-22908
      3b145a5a
  7. 07 5月, 2019 4 次提交
  8. 06 5月, 2019 1 次提交
  9. 04 5月, 2019 2 次提交
  10. 03 5月, 2019 3 次提交
  11. 02 5月, 2019 1 次提交
  12. 01 5月, 2019 1 次提交
  13. 27 4月, 2019 3 次提交