Annotation Interface AutoConfigureOrder
Auto-configuration specific variant of Spring Framework's
@Order
annotation. Allows auto-configuration classes to be ordered among themselves without
affecting the order of configuration classes passed to
AnnotationConfigApplicationContext.register(Class...)
.
As with standard @Configuration
classes, the order in which
auto-configuration classes are applied only affects the order in which their beans are
defined. The order in which those beans are subsequently created is unaffected and is
determined by each bean's dependencies and any @DependsOn
relationships.
- Since:
- 1.3.0
- Author:
- Andy Wilkinson
-
Optional Element Summary
-
Field Summary
-
Field Details
-
DEFAULT_ORDER
static final int DEFAULT_ORDERThe default order value.- See Also:
-
-
Element Details
-
value
int valueThe order value. Default is0
.- Returns:
- the order value
- See Also:
- Default:
- 0
-