getMessage() — spring-boot Function Reference
Architecture documentation for the getMessage() function in InactiveConfigDataAccessException.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 3dee26ce_0c63_c7ab_ba9b_34bb7077e711["getMessage()"] 7937beec_9975_5b51_7eb6_83d9df4d24c5["InactiveConfigDataAccessException()"] 7937beec_9975_5b51_7eb6_83d9df4d24c5 -->|calls| 3dee26ce_0c63_c7ab_ba9b_34bb7077e711 7437ce23_cb84_88cd_05ea_0748b72957a1["getName()"] 3dee26ce_0c63_c7ab_ba9b_34bb7077e711 -->|calls| 7437ce23_cb84_88cd_05ea_0748b72957a1 ab2d8162_8b78_6d7d_a007_edd56cb0b2e5["append()"] 3dee26ce_0c63_c7ab_ba9b_34bb7077e711 -->|calls| ab2d8162_8b78_6d7d_a007_edd56cb0b2e5 85f0a081_97f6_451e_57ce_91dcf2b87d1f["toString()"] 3dee26ce_0c63_c7ab_ba9b_34bb7077e711 -->|calls| 85f0a081_97f6_451e_57ce_91dcf2b87d1f style 3dee26ce_0c63_c7ab_ba9b_34bb7077e711 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/config/InactiveConfigDataAccessException.java lines 64–81
private static String getMessage(PropertySource<?> propertySource, @Nullable ConfigDataResource location,
String propertyName, @Nullable Origin origin) {
StringBuilder message = new StringBuilder("Inactive property source '");
message.append(propertySource.getName());
if (location != null) {
message.append("' imported from location '");
message.append(location);
}
message.append("' cannot contain property '");
message.append(propertyName);
message.append("'");
if (origin != null) {
message.append(" [origin: ");
message.append(origin);
message.append("]");
}
return message.toString();
}
Domain
Subdomains
Called By
- InactiveConfigDataAccessException()
Source
Frequently Asked Questions
What does getMessage() do?
getMessage() is a function in the spring-boot codebase.
What does getMessage() call?
getMessage() calls 3 function(s): append, getName, toString.
What calls getMessage()?
getMessage() is called by 1 function(s): InactiveConfigDataAccessException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free