mergingOfAdditionalProperty() — spring-boot Function Reference
Architecture documentation for the mergingOfAdditionalProperty() function in MergeMetadataGenerationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD f5e568a9_e1ed_aa61_1afd_3856040f87b5["mergingOfAdditionalProperty()"] 14d469eb_4ba7_e784_b4d8_11c5e9d3b187["newProperty()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| 14d469eb_4ba7_e784_b4d8_11c5e9d3b187 a0b89884_7c7a_0fc8_975b_346d0a11f1b4["buildAdditionalMetadata()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| a0b89884_7c7a_0fc8_975b_346d0a11f1b4 56afd5ff_85de_d8b5_5901_a76923fe9704["has()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| 56afd5ff_85de_d8b5_5901_a76923fe9704 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc a7060ba0_7028_1911_946e_7c3090117119["fromSource()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 e8e90934_397b_b72b_06c2_bff3d0ed5ac5["getName()"] f5e568a9_e1ed_aa61_1afd_3856040f87b5 -->|calls| e8e90934_397b_b72b_06c2_bff3d0ed5ac5 style f5e568a9_e1ed_aa61_1afd_3856040f87b5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/MergeMetadataGenerationTests.java lines 49–57
@Test
void mergingOfAdditionalProperty() throws Exception {
ItemMetadata property = ItemMetadata.newProperty(null, "foo", "java.lang.String",
AdditionalMetadata.class.getName(), null, null, null, null);
String additionalMetadata = buildAdditionalMetadata(property);
ConfigurationMetadata metadata = compile(additionalMetadata, SimpleProperties.class);
assertThat(metadata).has(Metadata.withProperty("simple.comparator"));
assertThat(metadata).has(Metadata.withProperty("foo", String.class).fromSource(AdditionalMetadata.class));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does mergingOfAdditionalProperty() do?
mergingOfAdditionalProperty() is a function in the spring-boot codebase.
What does mergingOfAdditionalProperty() call?
mergingOfAdditionalProperty() calls 6 function(s): buildAdditionalMetadata, fromSource, getName, has, newProperty, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free