Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/spring-projects/spring-boot.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Jan 30, 2017
  2. Jan 28, 2017
    • Phillip Webb's avatar
      Merge pull request #7948 from szantopeter/master · 1c75d002
      Phillip Webb authored
      * pull7948:
        Document AWS Elastic Beanstalk deployment
      1c75d002
    • Peter Szanto's avatar
      Document AWS Elastic Beanstalk deployment · 14bd404b
      Peter Szanto authored
      Update the reference documentation to include details of Amazon
      Elastic Beanstalk.
      
      Closes gh-7948
      14bd404b
    • Phillip Webb's avatar
      Refine ImportsContextCustomizer cache logic · fa6a1385
      Phillip Webb authored
      Update `ImportsContextCustomizer` so that whenever possible a more
      specific cache key is used.
      
      Prior to this commit the customizer would generate a key based on *all*
      annotations on the test class. This has repeatedly caused issues where
      test classes that should have the same cache key did not due to
      unrelated annotations.
      
      A new `DeterminableImports` interface has been added that can be
      implemented by `ImportSelector` and `ImportBeanDefinitionRegistrar`
      implementations that are able to determine their imports early. The
      existing `ImportAutoConfigurationImportSelector` and
      `AutoConfigurationPackages` classes have been retrofitted with
      this interface.
      
      Fixes gh-7953
      fa6a1385
    • Phillip Webb's avatar
      Fix TypeExcludeFiltersContextCustomer key · aaf118c5
      Phillip Webb authored
      Update `TypeExcludeFiltersContextCustomer` to use filter instances
      as part of the key, rather than class references. In order to be used
      in tests, `TypeExcludeFilter` implementations must now implement valid
      `hashCode` and `equals` methods.
      
      Fixes gh-8125
      aaf118c5
  3. Jan 27, 2017
    • Andy Wilkinson's avatar
      Merge branch '1.4.x' into 1.5.x · 180ab2da
      Andy Wilkinson authored
      180ab2da
    • Andy Wilkinson's avatar
      Order ManagementContextConfiguration classes without loading them · f3b9b14b
      Andy Wilkinson authored
      Previously, ManagementContextConfiguration classes were loaded to
      allow them to be ordered based on either @Order or implementing
      Ordered. This had the unwanted side-effect of possibly logging
      unwanted INFO messages if the reflection-based annotation
      introspection failed. One cause of this was @ConditionalOnClass when
      the referenced class was not on the classpath.
      
      This commit uses the ASM-based annotation metadata reading to
      determine the order of a management context configuration class based
      on the @Order annotation. The classes are then sorted using a standard
      OrderComparator. Note that Ordering via implemented Ordered is not
      supported as it cannot be determine without loading the class.
      f3b9b14b
  4. Jan 26, 2017
  5. Jan 25, 2017