appendAdditionalProperties() — spring-boot Function Reference
Architecture documentation for the appendAdditionalProperties() function in InvalidConfigurationPropertyValueFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 513d2b85_9284_c4c4_0279_a8ce0576f35b["appendAdditionalProperties()"] d46c0de4_6f8b_b050_2454_a92b12e385b6["analyze()"] d46c0de4_6f8b_b050_2454_a92b12e385b6 -->|calls| 513d2b85_9284_c4c4_0279_a8ce0576f35b 5a347c63_a80f_0a53_3fb0_81b5f1da94e8["getPropertySource()"] 513d2b85_9284_c4c4_0279_a8ce0576f35b -->|calls| 5a347c63_a80f_0a53_3fb0_81b5f1da94e8 1554f80c_0de9_09e8_e691_ef72d6959b4f["getValue()"] 513d2b85_9284_c4c4_0279_a8ce0576f35b -->|calls| 1554f80c_0de9_09e8_e691_ef72d6959b4f b3a5fd52_fd26_328b_ffbd_6e8773bc0f10["appendOrigin()"] 513d2b85_9284_c4c4_0279_a8ce0576f35b -->|calls| b3a5fd52_fd26_328b_ffbd_6e8773bc0f10 style 513d2b85_9284_c4c4_0279_a8ce0576f35b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/InvalidConfigurationPropertyValueFailureAnalyzer.java lines 109–122
private void appendAdditionalProperties(StringBuilder message, List<Descriptor> descriptors) {
List<Descriptor> others = descriptors.subList(1, descriptors.size());
if (!others.isEmpty()) {
message
.append(String.format("%n%nAdditionally, this property is also set in the following property %s:%n%n",
(others.size() > 1) ? "sources" : "source"));
for (Descriptor other : others) {
message.append("\t- In '").append(other.getPropertySource()).append("'");
message.append(" with the value '").append(other.getValue()).append("'");
other.appendOrigin(message);
message.append(String.format(".%n"));
}
}
}
Domain
Subdomains
Calls
- appendOrigin()
- getPropertySource()
- getValue()
Called By
Source
Frequently Asked Questions
What does appendAdditionalProperties() do?
appendAdditionalProperties() is a function in the spring-boot codebase.
What does appendAdditionalProperties() call?
appendAdditionalProperties() calls 3 function(s): appendOrigin, getPropertySource, getValue.
What calls appendAdditionalProperties()?
appendAdditionalProperties() is called by 1 function(s): analyze.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free