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

bindToMapWhenMultipleCandidateShouldBindFirst() — spring-boot Function Reference

Architecture documentation for the bindToMapWhenMultipleCandidateShouldBindFirst() function in MapBinderTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  93b2b44f_9e61_5a13_c249_7d8810740cf1["bindToMapWhenMultipleCandidateShouldBindFirst()"]
  dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"]
  93b2b44f_9e61_5a13_c249_7d8810740cf1 -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e
  7ed947bf_22a1_2781_a2ae_759aa1907445["add()"]
  93b2b44f_9e61_5a13_c249_7d8810740cf1 -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445
  d7626b8d_946e_609d_ccf0_ffbf47d8df9a["get()"]
  93b2b44f_9e61_5a13_c249_7d8810740cf1 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a
  4fef258c_a2a4_d498_7bd8_31a7595265f6["put()"]
  93b2b44f_9e61_5a13_c249_7d8810740cf1 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  style 93b2b44f_9e61_5a13_c249_7d8810740cf1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/MapBinderTests.java lines 213–228

	@Test
	void bindToMapWhenMultipleCandidateShouldBindFirst() {
		MockConfigurationPropertySource source1 = new MockConfigurationPropertySource();
		source1.put("foo.bar", "1");
		source1.put("foo.baz", "2");
		this.sources.add(source1);
		MockConfigurationPropertySource source2 = new MockConfigurationPropertySource();
		source2.put("foo.baz", "3");
		source2.put("foo.bin", "4");
		this.sources.add(source2);
		Map<String, Integer> result = this.binder.bind("foo", STRING_INTEGER_MAP).get();
		assertThat(result).hasSize(3);
		assertThat(result).containsEntry("bar", 1);
		assertThat(result).containsEntry("baz", 2);
		assertThat(result).containsEntry("bin", 4);
	}

Domain

Subdomains

Frequently Asked Questions

What does bindToMapWhenMultipleCandidateShouldBindFirst() do?
bindToMapWhenMultipleCandidateShouldBindFirst() is a function in the spring-boot codebase.
What does bindToMapWhenMultipleCandidateShouldBindFirst() call?
bindToMapWhenMultipleCandidateShouldBindFirst() calls 4 function(s): MockConfigurationPropertySource, add, get, put.

Analyze Your Own Codebase

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

Try Supermodel Free