loadWhenBindingWithCustomConverterAndObjectToObjectMethod() — spring-boot Function Reference
Architecture documentation for the loadWhenBindingWithCustomConverterAndObjectToObjectMethod() function in ConfigurationPropertiesTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 2808073e_46f5_3947_adf5_a15d1738dfbd["loadWhenBindingWithCustomConverterAndObjectToObjectMethod()"] ceb0c1b2_caf2_c9b2_e27f_70b95f8bfc7c["getSharedInstance()"] 2808073e_46f5_3947_adf5_a15d1738dfbd -->|calls| ceb0c1b2_caf2_c9b2_e27f_70b95f8bfc7c 2d8a7a70_547b_f14f_ed40_738031ca3bfb["getItem()"] 2808073e_46f5_3947_adf5_a15d1738dfbd -->|calls| 2d8a7a70_547b_f14f_ed40_738031ca3bfb 0a29114a_7c8e_c18a_3d1a_4a17e77736bc["getValue()"] 2808073e_46f5_3947_adf5_a15d1738dfbd -->|calls| 0a29114a_7c8e_c18a_3d1a_4a17e77736bc 05d207ba_cdfc_1f3b_359f_89b70a0aec4e["load()"] 2808073e_46f5_3947_adf5_a15d1738dfbd -->|calls| 05d207ba_cdfc_1f3b_359f_89b70a0aec4e style 2808073e_46f5_3947_adf5_a15d1738dfbd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 1265–1274
@Test // gh-28592
void loadWhenBindingWithCustomConverterAndObjectToObjectMethod() {
this.context.getBeanFactory().setConversionService(ApplicationConversionService.getSharedInstance());
load(WithCustomConverterAndObjectToObjectMethodConfiguration.class, "test.item=foo");
WithCustomConverterAndObjectToObjectMethodProperties bean = this.context
.getBean(WithCustomConverterAndObjectToObjectMethodProperties.class);
WithPublicObjectToObjectMethod item = bean.getItem();
assertThat(item).isNotNull();
assertThat(item.getValue()).isEqualTo("foo");
}
Domain
Subdomains
Calls
- getItem()
- getSharedInstance()
- getValue()
- load()
Source
Frequently Asked Questions
What does loadWhenBindingWithCustomConverterAndObjectToObjectMethod() do?
loadWhenBindingWithCustomConverterAndObjectToObjectMethod() is a function in the spring-boot codebase.
What does loadWhenBindingWithCustomConverterAndObjectToObjectMethod() call?
loadWhenBindingWithCustomConverterAndObjectToObjectMethod() calls 4 function(s): getItem, getSharedInstance, getValue, load.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free