bindToMapWithDefaultConstructor() — spring-boot Function Reference
Architecture documentation for the bindToMapWithDefaultConstructor() function in MapBinderTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c94889f0_11e9_323b_d8d9_cdf680d83005["bindToMapWithDefaultConstructor()"] dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"] c94889f0_11e9_323b_d8d9_cdf680d83005 -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e 7ed947bf_22a1_2781_a2ae_759aa1907445["add()"] c94889f0_11e9_323b_d8d9_cdf680d83005 -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445 d7626b8d_946e_609d_ccf0_ffbf47d8df9a["get()"] c94889f0_11e9_323b_d8d9_cdf680d83005 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 4fef258c_a2a4_d498_7bd8_31a7595265f6["put()"] c94889f0_11e9_323b_d8d9_cdf680d83005 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6 c1c2800b_8356_d703_b914_26573e5ea4b8["getItems()"] c94889f0_11e9_323b_d8d9_cdf680d83005 -->|calls| c1c2800b_8356_d703_b914_26573e5ea4b8 style c94889f0_11e9_323b_d8d9_cdf680d83005 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 583–593
@Test
void bindToMapWithDefaultConstructor() {
// gh-12322
MockConfigurationPropertySource source = new MockConfigurationPropertySource();
source.put("foo.items.a", "b");
this.sources.add(source);
ExampleCustomWithDefaultConstructorBean result = this.binder
.bind("foo", ExampleCustomWithDefaultConstructorBean.class)
.get();
assertThat(result.getItems()).containsExactly(entry("a", "b"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does bindToMapWithDefaultConstructor() do?
bindToMapWithDefaultConstructor() is a function in the spring-boot codebase.
What does bindToMapWithDefaultConstructor() call?
bindToMapWithDefaultConstructor() calls 5 function(s): MockConfigurationPropertySource, add, get, getItems, put.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free