getCallerMethodDescriptor() — spring-boot Function Reference
Architecture documentation for the getCallerMethodDescriptor() function in NoSuchMethodFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 09e0370c_f24b_faed_8c3a_178cca5dc24b["getCallerMethodDescriptor()"] 0dd98b3a_062f_25d7_e4dc_56d59adb88f7["analyze()"] 0dd98b3a_062f_25d7_e4dc_56d59adb88f7 -->|calls| 09e0370c_f24b_faed_8c3a_178cca5dc24b 5764ccab_2be8_487f_62a0_119198f8430f["getClassName()"] 09e0370c_f24b_faed_8c3a_178cca5dc24b -->|calls| 5764ccab_2be8_487f_62a0_119198f8430f f2faecf2_c2f1_38a2_5cf9_009912821e18["getDescriptorForClass()"] 09e0370c_f24b_faed_8c3a_178cca5dc24b -->|calls| f2faecf2_c2f1_38a2_5cf9_009912821e18 style 09e0370c_f24b_faed_8c3a_178cca5dc24b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzer.java lines 58–63
private @Nullable NoSuchMethodDescriptor getCallerMethodDescriptor(NoSuchMethodError cause) {
StackTraceElement firstStackTraceElement = cause.getStackTrace()[0];
String message = firstStackTraceElement.toString();
String className = firstStackTraceElement.getClassName();
return getDescriptorForClass(message, className);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getCallerMethodDescriptor() do?
getCallerMethodDescriptor() is a function in the spring-boot codebase.
What does getCallerMethodDescriptor() call?
getCallerMethodDescriptor() calls 2 function(s): getClassName, getDescriptorForClass.
What calls getCallerMethodDescriptor()?
getCallerMethodDescriptor() 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