Uses of Class
org.springframework.boot.context.annotation.Configurations
Packages that use Configurations
Package
Description
Spring Boot's auto-configuration capabilities.
Classes related to Spring's
ApplicationContext
annotations.Test utilities to run application contexts for testing.
-
Uses of Configurations in org.springframework.boot.autoconfigure
Subclasses of Configurations in org.springframework.boot.autoconfigureModifier and TypeClassDescriptionclass
Configurations
representing auto-configuration@Configuration
classes. -
Uses of Configurations in org.springframework.boot.context.annotation
Subclasses of Configurations in org.springframework.boot.context.annotationModifier and TypeClassDescriptionclass
Configurations
representing user-defined@Configuration
classes (i.e.Methods in org.springframework.boot.context.annotation that return ConfigurationsModifier and TypeMethodDescriptionprotected abstract Configurations
Merge configurations.protected Configurations
Configurations.merge
(Configurations other) Merge configurations from another source of the same type.Methods in org.springframework.boot.context.annotation with parameters of type ConfigurationsModifier and TypeMethodDescriptionstatic Class<?>[]
Configurations.getClasses
(Configurations... configurations) Return the classes from all the specified configurations in the order that they would be registered.protected Configurations
Configurations.merge
(Configurations other) Merge configurations from another source of the same type.Method parameters in org.springframework.boot.context.annotation with type arguments of type ConfigurationsModifier and TypeMethodDescriptionstatic Class<?>[]
Configurations.getClasses
(Collection<Configurations> configurations) Return the classes from all the specified configurations in the order that they would be registered. -
Uses of Configurations in org.springframework.boot.test.context.runner
Methods in org.springframework.boot.test.context.runner with parameters of type ConfigurationsModifier and TypeMethodDescriptionAbstractApplicationContextRunner.withConfiguration
(Configurations configurations) Register the specified configuration classes with theApplicationContext
.