loadWithoutConfigurationPropertiesBindHandlerAdvisor() — spring-boot Function Reference
Architecture documentation for the loadWithoutConfigurationPropertiesBindHandlerAdvisor() function in ConfigurationPropertiesBindHandlerAdvisorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 32ba7101_b06f_100c_f036_dfca83efa0aa["loadWithoutConfigurationPropertiesBindHandlerAdvisor()"] 270d4ec4_3bda_055f_e58f_52fac05e17aa["load()"] 32ba7101_b06f_100c_f036_dfca83efa0aa -->|calls| 270d4ec4_3bda_055f_e58f_52fac05e17aa 07b04d8b_afb9_6c0e_13f7_40918a747e09["getBindings()"] 32ba7101_b06f_100c_f036_dfca83efa0aa -->|calls| 07b04d8b_afb9_6c0e_13f7_40918a747e09 bc170fc6_9579_6770_cef8_b0490b46e340["getDestination()"] 32ba7101_b06f_100c_f036_dfca83efa0aa -->|calls| bc170fc6_9579_6770_cef8_b0490b46e340 4ee043ac_1d34_9f85_f83e_733d1adfafc1["getContentType()"] 32ba7101_b06f_100c_f036_dfca83efa0aa -->|calls| 4ee043ac_1d34_9f85_f83e_733d1adfafc1 2240d92d_9377_14f7_d46a_dbbc4937f5d8["get()"] 32ba7101_b06f_100c_f036_dfca83efa0aa -->|calls| 2240d92d_9377_14f7_d46a_dbbc4937f5d8 style 32ba7101_b06f_100c_f036_dfca83efa0aa fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindHandlerAdvisorTests.java lines 54–68
@Test
void loadWithoutConfigurationPropertiesBindHandlerAdvisor() {
load(WithoutConfigurationPropertiesBindHandlerAdvisor.class, "foo.bar.default.content-type=text/plain",
"foo.bar.bindings.input.destination=d1", "foo.bar.bindings.input.content-type=text/xml",
"foo.bar.bindings.output.destination=d2");
BindingServiceProperties properties = this.context.getBean(BindingServiceProperties.class);
BindingProperties input = properties.getBindings().get("input");
assertThat(input).isNotNull();
assertThat(input.getDestination()).isEqualTo("d1");
assertThat(input.getContentType()).isEqualTo("text/xml");
BindingProperties output = properties.getBindings().get("output");
assertThat(output).isNotNull();
assertThat(output.getDestination()).isEqualTo("d2");
assertThat(output.getContentType()).isEqualTo("application/json");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does loadWithoutConfigurationPropertiesBindHandlerAdvisor() do?
loadWithoutConfigurationPropertiesBindHandlerAdvisor() is a function in the spring-boot codebase.
What does loadWithoutConfigurationPropertiesBindHandlerAdvisor() call?
loadWithoutConfigurationPropertiesBindHandlerAdvisor() calls 5 function(s): get, getBindings, getContentType, getDestination, load.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free