immutableSourceIsMergedWithNestedConfigurationProperty() — spring-boot Function Reference
Architecture documentation for the immutableSourceIsMergedWithNestedConfigurationProperty() function in ConfigurationMetadataAnnotationProcessorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b["immutableSourceIsMergedWithNestedConfigurationProperty()"] 4e7738f0_ea94_abd8_5384_e7be1344cace["compile()"] 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b -->|calls| 4e7738f0_ea94_abd8_5384_e7be1344cace 83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"] 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc facc73e3_5f28_4513_9b1f_79367931e644["withDescription()"] 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b -->|calls| facc73e3_5f28_4513_9b1f_79367931e644 3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"] 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681 style 56c8dfbc_dac4_96b6_a756_4fcc30fdeb9b 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 667–678
@Test
void immutableSourceIsMergedWithNestedConfigurationProperty() {
ConfigurationMetadata metadata = compile(ImmutableSourceAnnotated.class, ImmutableSource.class);
assertThat(metadata).has(Metadata.withGroup("example.nested", ImmutableSource.class))
.has(Metadata.withProperty("example.nested.name", String.class).withDescription("Name description."))
.has(Metadata.withProperty("example.nested.description", String.class)
.withDescription("Description description.")
.withDefaultValue("Hello World"))
.has(Metadata.withProperty("example.nested.type", String.class)
.withDescription("A property with a fixed set of values.")
.withDefaultValue("single"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does immutableSourceIsMergedWithNestedConfigurationProperty() do?
immutableSourceIsMergedWithNestedConfigurationProperty() is a function in the spring-boot codebase.
What does immutableSourceIsMergedWithNestedConfigurationProperty() call?
immutableSourceIsMergedWithNestedConfigurationProperty() calls 5 function(s): compile, withDefaultValue, withDescription, withGroup, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free