getAction() — spring-boot Function Reference
Architecture documentation for the getAction() function in NoSuchMethodFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD f7c9694a_91d0_ac42_1bbf_725c8999feef["getAction()"] 0dd98b3a_062f_25d7_e4dc_56d59adb88f7["analyze()"] 0dd98b3a_062f_25d7_e4dc_56d59adb88f7 -->|calls| f7c9694a_91d0_ac42_1bbf_725c8999feef 1a4e5320_a2e2_8aa5_7d05_1e805db190f1["getAction()"] f7c9694a_91d0_ac42_1bbf_725c8999feef -->|calls| 1a4e5320_a2e2_8aa5_7d05_1e805db190f1 5764ccab_2be8_487f_62a0_119198f8430f["getClassName()"] f7c9694a_91d0_ac42_1bbf_725c8999feef -->|calls| 5764ccab_2be8_487f_62a0_119198f8430f style f7c9694a_91d0_ac42_1bbf_725c8999feef fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzer.java lines 200–209
private String getAction(NoSuchMethodDescriptor callerDescriptor, NoSuchMethodDescriptor calledDescriptor) {
if (callerDescriptor.getClassName().equals(calledDescriptor.getClassName())) {
return "Correct the classpath of your application so that it contains a single, compatible version of "
+ calledDescriptor.getClassName();
}
else {
return "Correct the classpath of your application so that it contains compatible versions of the classes "
+ callerDescriptor.getClassName() + " and " + calledDescriptor.getClassName();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getAction() do?
getAction() is a function in the spring-boot codebase.
What does getAction() call?
getAction() calls 2 function(s): getAction, getClassName.
What calls getAction()?
getAction() 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