Annotation Interface PostAutoConfigurationImport
@Target(TYPE)
@Retention(RUNTIME)
@Documented
@Import(PostAutoConfigurationDefferedImportSelector.class)
public @interface PostAutoConfigurationImport
Loads the given set of classes after Spring's
EnableAutoConfiguration
. This must be added
to an @Configuration
class that is within a normal component-scan, but the given class to
be imported must not be component-scanned.- Author:
- Phillip Verheyden (phillipuniverse)
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
value
Class<?>[] valueThe classes that should be imported after Spring'sEnableAutoConfiguration
classes. Classes passed in here must be excluded from any component scans or otherImport
s, and should be annotated with @PostAutoConfiguration
-