Home / Function/ hasKnownBindableProperties() — spring-boot Function Reference

hasKnownBindableProperties() — spring-boot Function Reference

Architecture documentation for the hasKnownBindableProperties() function in JavaBeanBinder.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  608396b1_2cc0_f216_6d4a_fe61b364e344["hasKnownBindableProperties()"]
  20338f0d_1278_4ee8_2318_7a2fbc33ae58["bind()"]
  20338f0d_1278_4ee8_2318_7a2fbc33ae58 -->|calls| 608396b1_2cc0_f216_6d4a_fe61b364e344
  ed1181ba_42a8_e400_bc90_2af1f176caff["getHasKnownBindablePropertiesCache()"]
  608396b1_2cc0_f216_6d4a_fe61b364e344 -->|calls| ed1181ba_42a8_e400_bc90_2af1f176caff
  cf248d69_b054_3523_f073_cfbaaa84d2fc["computeHasKnownBindableProperties()"]
  608396b1_2cc0_f216_6d4a_fe61b364e344 -->|calls| cf248d69_b054_3523_f073_cfbaaa84d2fc
  7c9243c3_087f_8f36_f31b_4fafbe79db95["get()"]
  608396b1_2cc0_f216_6d4a_fe61b364e344 -->|calls| 7c9243c3_087f_8f36_f31b_4fafbe79db95
  style 608396b1_2cc0_f216_6d4a_fe61b364e344 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 82–90

	private boolean hasKnownBindableProperties(ConfigurationPropertyName name, Context context) {
		Map<ConfigurationPropertyName, Boolean> cache = getHasKnownBindablePropertiesCache(context);
		Boolean hasKnownBindableProperties = cache.get(name);
		if (hasKnownBindableProperties == null) {
			hasKnownBindableProperties = computeHasKnownBindableProperties(name, context);
			cache.put(name, hasKnownBindableProperties);
		}
		return hasKnownBindableProperties;
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does hasKnownBindableProperties() do?
hasKnownBindableProperties() is a function in the spring-boot codebase.
What does hasKnownBindableProperties() call?
hasKnownBindableProperties() calls 3 function(s): computeHasKnownBindableProperties, get, getHasKnownBindablePropertiesCache.
What calls hasKnownBindableProperties()?
hasKnownBindableProperties() is called by 1 function(s): bind.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free