类 Configurations

  • 直接已知子类:
    UserConfigurations

    public abstract class Configurations
    extends Object
    A set of @Configuration classes that can be registered in ApplicationContext. Classes can be returned from one or more Configurations instances by using getClasses(Configurations[]). The resulting array follows the ordering rules usually applied by the ApplicationContext and/or custom ImportSelector implementations.

    This class is primarily intended for use with tests that need to specify configuration classes but can't use SpringRunner.

    Implementations of this class should be annotated with @Order or implement Ordered.

    从以下版本开始:
    2.0.0
    另请参阅:
    UserConfigurations
    • 方法详细资料

      • sort

        protected Collection<Class<?>> sort​(Collection<Class<?>> classes)
        Sort configuration classes into the order that they should be applied.
        参数:
        classes - the classes to sort
        返回:
        a sorted set of classes
      • merge

        protected Configurations merge​(Configurations other)
        Merge configurations from another source of the same type.
        参数:
        other - the other Configurations (must be of the same type as this instance)
        返回:
        a new configurations instance (must be of the same type as this instance)
      • merge

        protected abstract Configurations merge​(Set<Class<?>> mergedClasses)
        Merge configurations.
        参数:
        mergedClasses - the merged classes
        返回:
        a new configurations instance (must be of the same type as this instance)
      • getClasses

        public static Class<?>[] getClasses​(Configurations... configurations)
        Return the classes from all the specified configurations in the order that they would be registered.
        参数:
        configurations - the source configuration
        返回:
        configuration classes in registration order
      • getClasses

        public static Class<?>[] getClasses​(Collection<Configurations> configurations)
        Return the classes from all the specified configurations in the order that they would be registered.
        参数:
        configurations - the source configuration
        返回:
        configuration classes in registration order