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

bindToMapWithEmptyPrefix() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  631412a5_0e8b_086c_d940_9170ff488289["bindToMapWithEmptyPrefix()"]
  dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"]
  631412a5_0e8b_086c_d940_9170ff488289 -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e
  7ed947bf_22a1_2781_a2ae_759aa1907445["add()"]
  631412a5_0e8b_086c_d940_9170ff488289 -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445
  d7626b8d_946e_609d_ccf0_ffbf47d8df9a["get()"]
  631412a5_0e8b_086c_d940_9170ff488289 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a
  4fef258c_a2a4_d498_7bd8_31a7595265f6["put()"]
  631412a5_0e8b_086c_d940_9170ff488289 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  style 631412a5_0e8b_086c_d940_9170ff488289 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 105–113

	@Test
	@SuppressWarnings("unchecked")
	void bindToMapWithEmptyPrefix() {
		MockConfigurationPropertySource source = new MockConfigurationPropertySource();
		source.put("foo.bar", "1");
		this.sources.add(source);
		Map<String, Object> result = this.binder.bind("", STRING_OBJECT_MAP).get();
		assertThat((Map<String, Object>) result.get("foo")).containsEntry("bar", "1");
	}

Domain

Subdomains

Frequently Asked Questions

What does bindToMapWithEmptyPrefix() do?
bindToMapWithEmptyPrefix() is a function in the spring-boot codebase.
What does bindToMapWithEmptyPrefix() call?
bindToMapWithEmptyPrefix() 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