1. 15 5月, 2019 1 次提交
    • A
      Make StringDecoder use DataBufferUtils.split · a30a134c
      Arjen Poutsma 提交于
      * Added DataBufferUtils.split variant that takes multiple delimiters
        as argument (instead of 1).
      * Use this new split() variant from within StringDecoder, replacing
        its inefficient algorithm with the Knuth-Morris-Pratt algorithm.
      a30a134c
  2. 13 5月, 2019 1 次提交
  3. 12 5月, 2019 1 次提交
  4. 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
  5. 08 5月, 2019 12 次提交
    • 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
      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
      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
      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
  6. 07 5月, 2019 4 次提交
  7. 06 5月, 2019 1 次提交
  8. 03 5月, 2019 1 次提交
  9. 27 4月, 2019 1 次提交
  10. 26 4月, 2019 1 次提交
  11. 21 4月, 2019 1 次提交
  12. 17 4月, 2019 1 次提交
    • R
      LeakAwareDataBuffer related fixes · 375090bb
      Rossen Stoyanchev 提交于
      Following on 3ebbfa21 where the local
      refCount was removed in favor of using the internal refCount of the
      native data buffer, this commit ensures that LeakAwareDataBufferFactory
      uses a PooledDataBufferFactory delegate by default.
      
      There are also fixes for test issues with eager allocation uncovered by
      these changes in StringDecoder and ResourceDecoder.
      375090bb
  13. 11 4月, 2019 1 次提交
    • R
      Fix refCount issue in LeakAwareDataBuffer · 3ebbfa21
      Rossen Stoyanchev 提交于
      LeakAwareDataBuffer was keeping its own refCount rather than checking
      through the delegate. This leads to false leak reports in a sequence
      where an allocated buffer is retained and then sliced since it is not
      aware of the changes to the refCount through the slice.
      3ebbfa21
  14. 10 4月, 2019 1 次提交
  15. 09 4月, 2019 1 次提交
  16. 08 4月, 2019 3 次提交
  17. 06 4月, 2019 4 次提交
  18. 04 4月, 2019 2 次提交