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

buildDescription() — spring-boot Function Reference

Architecture documentation for the buildDescription() function in UnboundConfigurationPropertyFailureAnalyzer.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  89d4ab1d_38b9_4778_0ed9_71f913da636a["buildDescription()"]
  89a29da7_746f_c376_775a_f49aea55acf2["analyzeUnboundConfigurationPropertiesException()"]
  89a29da7_746f_c376_775a_f49aea55acf2 -->|calls| 89d4ab1d_38b9_4778_0ed9_71f913da636a
  24826c4f_acf6_aa2a_3d90_87a20f29d219["getValue()"]
  89d4ab1d_38b9_4778_0ed9_71f913da636a -->|calls| 24826c4f_acf6_aa2a_3d90_87a20f29d219
  573e5152_60ef_8e47_885b_9d5ea793ac0e["getName()"]
  89d4ab1d_38b9_4778_0ed9_71f913da636a -->|calls| 573e5152_60ef_8e47_885b_9d5ea793ac0e
  bcfad5e4_63cf_b46d_111d_79f6688a2fc2["getOrigin()"]
  89d4ab1d_38b9_4778_0ed9_71f913da636a -->|calls| bcfad5e4_63cf_b46d_111d_79f6688a2fc2
  style 89d4ab1d_38b9_4778_0ed9_71f913da636a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer.java lines 55–61

	private void buildDescription(StringBuilder description, @Nullable ConfigurationProperty property) {
		if (property != null) {
			description.append(String.format("%n    Property: %s", property.getName()));
			description.append(String.format("%n    Value: \"%s\"", property.getValue()));
			description.append(String.format("%n    Origin: %s", property.getOrigin()));
		}
	}

Domain

Subdomains

Frequently Asked Questions

What does buildDescription() do?
buildDescription() is a function in the spring-boot codebase.
What does buildDescription() call?
buildDescription() calls 3 function(s): getName, getOrigin, getValue.
What calls buildDescription()?
buildDescription() is called by 1 function(s): analyzeUnboundConfigurationPropertiesException.

Analyze Your Own Codebase

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

Try Supermodel Free