getHasKnownBindablePropertiesCache() — spring-boot Function Reference
Architecture documentation for the getHasKnownBindablePropertiesCache() function in JavaBeanBinder.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD ed1181ba_42a8_e400_bc90_2af1f176caff["getHasKnownBindablePropertiesCache()"] 608396b1_2cc0_f216_6d4a_fe61b364e344["hasKnownBindableProperties()"] 608396b1_2cc0_f216_6d4a_fe61b364e344 -->|calls| ed1181ba_42a8_e400_bc90_2af1f176caff 61c1904e_02b6_01dc_4527_c7e4556c5cc1["getCache()"] ed1181ba_42a8_e400_bc90_2af1f176caff -->|calls| 61c1904e_02b6_01dc_4527_c7e4556c5cc1 7c9243c3_087f_8f36_f31b_4fafbe79db95["get()"] ed1181ba_42a8_e400_bc90_2af1f176caff -->|calls| 7c9243c3_087f_8f36_f31b_4fafbe79db95 style ed1181ba_42a8_e400_bc90_2af1f176caff fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/JavaBeanBinder.java lines 101–109
@SuppressWarnings("unchecked")
private Map<ConfigurationPropertyName, Boolean> getHasKnownBindablePropertiesCache(Context context) {
Object cache = context.getCache().get(HAS_KNOWN_BINDABLE_PROPERTIES_CACHE);
if (cache == null) {
cache = new ConcurrentHashMap<ConfigurationPropertyName, Boolean>();
context.getCache().put(HAS_KNOWN_BINDABLE_PROPERTIES_CACHE, cache);
}
return (Map<ConfigurationPropertyName, Boolean>) cache;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getHasKnownBindablePropertiesCache() do?
getHasKnownBindablePropertiesCache() is a function in the spring-boot codebase.
What does getHasKnownBindablePropertiesCache() call?
getHasKnownBindablePropertiesCache() calls 2 function(s): get, getCache.
What calls getHasKnownBindablePropertiesCache()?
getHasKnownBindablePropertiesCache() is called by 1 function(s): hasKnownBindableProperties.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free