buildDescription() — spring-boot Function Reference
Architecture documentation for the buildDescription() function in BindFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 022f89d1_9e5c_132a_89d4_05cc8ba279fc["buildDescription()"] 9dc2eeeb_ca3b_5708_1194_33bee9b929ba["analyzeGenericBindException()"] 9dc2eeeb_ca3b_5708_1194_33bee9b929ba -->|calls| 022f89d1_9e5c_132a_89d4_05cc8ba279fc 24826c4f_acf6_aa2a_3d90_87a20f29d219["getValue()"] 022f89d1_9e5c_132a_89d4_05cc8ba279fc -->|calls| 24826c4f_acf6_aa2a_3d90_87a20f29d219 7437ce23_cb84_88cd_05ea_0748b72957a1["getName()"] 022f89d1_9e5c_132a_89d4_05cc8ba279fc -->|calls| 7437ce23_cb84_88cd_05ea_0748b72957a1 bcfad5e4_63cf_b46d_111d_79f6688a2fc2["getOrigin()"] 022f89d1_9e5c_132a_89d4_05cc8ba279fc -->|calls| bcfad5e4_63cf_b46d_111d_79f6688a2fc2 style 022f89d1_9e5c_132a_89d4_05cc8ba279fc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/BindFailureAnalyzer.java lines 70–76
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
Called By
Source
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): analyzeGenericBindException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free