complexGenericProperties() — spring-boot Function Reference
Architecture documentation for the complexGenericProperties() function in GenericsMetadataGenerationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d4c55809_a299_f1ae_3d28_cdc057d31e31["complexGenericProperties()"] 83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"] d4c55809_a299_f1ae_3d28_cdc057d31e31 -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7 a7060ba0_7028_1911_946e_7c3090117119["fromSource()"] d4c55809_a299_f1ae_3d28_cdc057d31e31 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 70751124_3e92_ed3e_7f93_61d2e98490d3["ofType()"] d4c55809_a299_f1ae_3d28_cdc057d31e31 -->|calls| 70751124_3e92_ed3e_7f93_61d2e98490d3 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] d4c55809_a299_f1ae_3d28_cdc057d31e31 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239["getItems()"] d4c55809_a299_f1ae_3d28_cdc057d31e31 -->|calls| c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239 style d4c55809_a299_f1ae_3d28_cdc057d31e31 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/GenericsMetadataGenerationTests.java lines 57–68
@Test
void complexGenericProperties() {
ConfigurationMetadata metadata = compile(ComplexGenericProperties.class);
assertThat(metadata).has(Metadata.withGroup("generic").fromSource(ComplexGenericProperties.class));
assertThat(metadata).has(Metadata.withGroup("generic.test")
.ofType(UpperBoundGenericPojo.class)
.fromSource(ComplexGenericProperties.class));
assertThat(metadata)
.has(Metadata.withProperty("generic.test.mappings", "java.util.Map<java.lang.Enum<T>,java.lang.String>")
.fromSource(UpperBoundGenericPojo.class));
assertThat(metadata.getItems()).hasSize(3);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does complexGenericProperties() do?
complexGenericProperties() is a function in the spring-boot codebase.
What does complexGenericProperties() call?
complexGenericProperties() calls 5 function(s): fromSource, getItems, ofType, withGroup, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free