parseArrayConfig() — spring-boot Function Reference
Architecture documentation for the parseArrayConfig() function in ConfigurationMetadataAnnotationProcessorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 5e381631_64f4_bf11_68f6_3e2eaba37bfc["parseArrayConfig()"] 4e7738f0_ea94_abd8_5384_e7be1344cace["compile()"] 5e381631_64f4_bf11_68f6_3e2eaba37bfc -->|calls| 4e7738f0_ea94_abd8_5384_e7be1344cace 83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"] 5e381631_64f4_bf11_68f6_3e2eaba37bfc -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7 70751124_3e92_ed3e_7f93_61d2e98490d3["ofType()"] 5e381631_64f4_bf11_68f6_3e2eaba37bfc -->|calls| 70751124_3e92_ed3e_7f93_61d2e98490d3 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] 5e381631_64f4_bf11_68f6_3e2eaba37bfc -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239["getItems()"] 5e381631_64f4_bf11_68f6_3e2eaba37bfc -->|calls| c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239 style 5e381631_64f4_bf11_68f6_3e2eaba37bfc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java lines 340–351
@Test
void parseArrayConfig() {
ConfigurationMetadata metadata = compile(SimpleArrayProperties.class);
assertThat(metadata).has(Metadata.withGroup("array").ofType(SimpleArrayProperties.class));
assertThat(metadata).has(Metadata.withProperty("array.primitive", "java.lang.Integer[]"));
assertThat(metadata).has(Metadata.withProperty("array.simple", "java.lang.String[]"));
assertThat(metadata).has(Metadata.withProperty("array.inner",
"org.springframework.boot.configurationsample.simple.SimpleArrayProperties$Holder[]"));
assertThat(metadata)
.has(Metadata.withProperty("array.name-to-integer", "java.util.Map<java.lang.String,java.lang.Integer>[]"));
assertThat(metadata.getItems()).hasSize(5);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does parseArrayConfig() do?
parseArrayConfig() is a function in the spring-boot codebase.
What does parseArrayConfig() call?
parseArrayConfig() calls 5 function(s): compile, getItems, ofType, withGroup, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free