Home / Function/ mergingOfAdditionalPropertyMatchingGroup() — spring-boot Function Reference

mergingOfAdditionalPropertyMatchingGroup() — spring-boot Function Reference

Architecture documentation for the mergingOfAdditionalPropertyMatchingGroup() function in MergeMetadataGenerationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  368a0e26_aab1_4871_819a_d1e1f12c1b34["mergingOfAdditionalPropertyMatchingGroup()"]
  14d469eb_4ba7_e784_b4d8_11c5e9d3b187["newProperty()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| 14d469eb_4ba7_e784_b4d8_11c5e9d3b187
  a0b89884_7c7a_0fc8_975b_346d0a11f1b4["buildAdditionalMetadata()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| a0b89884_7c7a_0fc8_975b_346d0a11f1b4
  56afd5ff_85de_d8b5_5901_a76923fe9704["has()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| 56afd5ff_85de_d8b5_5901_a76923fe9704
  83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  368a0e26_aab1_4871_819a_d1e1f12c1b34 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  style 368a0e26_aab1_4871_819a_d1e1f12c1b34 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 59–67

	@Test
	void mergingOfAdditionalPropertyMatchingGroup() throws Exception {
		ItemMetadata property = ItemMetadata.newProperty(null, "simple", "java.lang.String", null, null, null, null,
				null);
		String additionalMetadata = buildAdditionalMetadata(property);
		ConfigurationMetadata metadata = compile(additionalMetadata, SimpleProperties.class);
		assertThat(metadata).has(Metadata.withGroup("simple").fromSource(SimpleProperties.class));
		assertThat(metadata).has(Metadata.withProperty("simple", String.class));
	}

Domain

Subdomains

Frequently Asked Questions

What does mergingOfAdditionalPropertyMatchingGroup() do?
mergingOfAdditionalPropertyMatchingGroup() is a function in the spring-boot codebase.
What does mergingOfAdditionalPropertyMatchingGroup() call?
mergingOfAdditionalPropertyMatchingGroup() calls 6 function(s): buildAdditionalMetadata, fromSource, has, newProperty, withGroup, withProperty.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free