buildMessage() — spring-boot Function Reference
Architecture documentation for the buildMessage() function in UnboundConfigurationPropertiesException.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 5c0d5c50_eb2a_0689_6ef5_b155f78fa001["buildMessage()"] 0b5d0449_5445_7de7_ad0c_91f9f3734cb6["UnboundConfigurationPropertiesException()"] 0b5d0449_5445_7de7_ad0c_91f9f3734cb6 -->|calls| 5c0d5c50_eb2a_0689_6ef5_b155f78fa001 7437ce23_cb84_88cd_05ea_0748b72957a1["getName()"] 5c0d5c50_eb2a_0689_6ef5_b155f78fa001 -->|calls| 7437ce23_cb84_88cd_05ea_0748b72957a1 85f0a081_97f6_451e_57ce_91dcf2b87d1f["toString()"] 5c0d5c50_eb2a_0689_6ef5_b155f78fa001 -->|calls| 85f0a081_97f6_451e_57ce_91dcf2b87d1f style 5c0d5c50_eb2a_0689_6ef5_b155f78fa001 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException.java lines 47–53
private static String buildMessage(Set<ConfigurationProperty> unboundProperties) {
StringBuilder builder = new StringBuilder();
builder.append("The elements [");
String message = unboundProperties.stream().map((p) -> p.getName().toString()).collect(Collectors.joining(","));
builder.append(message).append("] were left unbound.");
return builder.toString();
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does buildMessage() do?
buildMessage() is a function in the spring-boot codebase.
What does buildMessage() call?
buildMessage() calls 2 function(s): getName, toString.
What calls buildMessage()?
buildMessage() is called by 1 function(s): UnboundConfigurationPropertiesException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free