getPropertySourceProperty() — spring-boot Function Reference
Architecture documentation for the getPropertySourceProperty() function in SpringConfigurationPropertySource.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1d643b50_27ed_ae36_3eec_4471b17fb520["getPropertySourceProperty()"] a778f819_855a_16f1_cd60_ec71fd7f7b83["getConfigurationProperty()"] a778f819_855a_16f1_cd60_ec71fd7f7b83 -->|calls| 1d643b50_27ed_ae36_3eec_4471b17fb520 1e199697_1095_8c2d_b625_003f14309680["getPropertySource()"] 1d643b50_27ed_ae36_3eec_4471b17fb520 -->|calls| 1e199697_1095_8c2d_b625_003f14309680 d24d0e7a_c958_dd05_88eb_0a4b11970830["getSystemEnvironmentProperty()"] 1d643b50_27ed_ae36_3eec_4471b17fb520 -->|calls| d24d0e7a_c958_dd05_88eb_0a4b11970830 style 1d643b50_27ed_ae36_3eec_4471b17fb520 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/SpringConfigurationPropertySource.java lines 106–112
protected final @Nullable Object getPropertySourceProperty(String name) {
// Save calls to SystemEnvironmentPropertySource.resolvePropertyName(...)
// since we've already done the mapping
PropertySource<?> propertySource = getPropertySource();
return (!this.systemEnvironmentSource) ? propertySource.getProperty(name)
: getSystemEnvironmentProperty(((SystemEnvironmentPropertySource) propertySource).getSource(), name);
}
Domain
Subdomains
Calls
- getPropertySource()
- getSystemEnvironmentProperty()
Called By
- getConfigurationProperty()
Source
Frequently Asked Questions
What does getPropertySourceProperty() do?
getPropertySourceProperty() is a function in the spring-boot codebase.
What does getPropertySourceProperty() call?
getPropertySourceProperty() calls 2 function(s): getPropertySource, getSystemEnvironmentProperty.
What calls getPropertySourceProperty()?
getPropertySourceProperty() is called by 1 function(s): getConfigurationProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free