Annotation Type ResourcePropertySources
-
@Target(TYPE) @Retention(RUNTIME) @Inherited @Documented @Import(io.microsphere.spring.config.context.annotation.ResourcePropertySourcesLoader.class) public @interface ResourcePropertySources
A container annotation that holds multipleResourcePropertySource
annotations.This annotation is used to apply multiple
ResourcePropertySource
configurations to a single class. It supports the same attributes as the individual annotations and serves as a way to group them logically.Examples Usage
Basic Usage
{@code
- Since:
- 1.0.0
- Author:
- Mercy
- See Also:
ResourcePropertySource
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description ResourcePropertySource[]
value
The severalResourcePropertySource
annotations.
-
-
-
Element Detail
-
value
@Nonnull ResourcePropertySource[] value
The severalResourcePropertySource
annotations.
-
-