createExposesEnvironmentBinderToConfigDataLocationResolvers() — spring-boot Function Reference
Architecture documentation for the createExposesEnvironmentBinderToConfigDataLocationResolvers() function in ConfigDataEnvironmentTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 7d5fd757_e51d_9793_a2d1_6ef391b96a92["createExposesEnvironmentBinderToConfigDataLocationResolvers()"] 09da28a0_28ea_c74d_d4ef_4d1f384c0e3f["TestConfigDataEnvironment()"] 7d5fd757_e51d_9793_a2d1_6ef391b96a92 -->|calls| 09da28a0_28ea_c74d_d4ef_4d1f384c0e3f 74692bf8_8109_34dd_b59e_49fa7dfd0144["getConfigDataLocationResolversBinder()"] 7d5fd757_e51d_9793_a2d1_6ef391b96a92 -->|calls| 74692bf8_8109_34dd_b59e_49fa7dfd0144 8297d150_846a_4cc4_47ca_e6d5a70497f3["bind()"] 7d5fd757_e51d_9793_a2d1_6ef391b96a92 -->|calls| 8297d150_846a_4cc4_47ca_e6d5a70497f3 style 7d5fd757_e51d_9793_a2d1_6ef391b96a92 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentTests.java lines 80–88
@Test
void createExposesEnvironmentBinderToConfigDataLocationResolvers() {
this.environment.setProperty("spring", "boot");
TestConfigDataEnvironment configDataEnvironment = new TestConfigDataEnvironment(this.logFactory,
this.bootstrapContext, this.environment, this.resourceLoader, this.additionalProfiles, null);
Binder binder = configDataEnvironment.getConfigDataLocationResolversBinder();
assertThat(binder).isNotNull();
assertThat(binder.bind("spring", String.class).get()).isEqualTo("boot");
}
Domain
Subdomains
Calls
- TestConfigDataEnvironment()
- bind()
- getConfigDataLocationResolversBinder()
Source
Frequently Asked Questions
What does createExposesEnvironmentBinderToConfigDataLocationResolvers() do?
createExposesEnvironmentBinderToConfigDataLocationResolvers() is a function in the spring-boot codebase.
What does createExposesEnvironmentBinderToConfigDataLocationResolvers() call?
createExposesEnvironmentBinderToConfigDataLocationResolvers() calls 3 function(s): TestConfigDataEnvironment, bind, getConfigDataLocationResolversBinder.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free