0-7 - Reflection class not found
Possible Reason
- Generally, when
Class.forName(className)
executes this method, the current class of className
cannot be found. - The business code shows that the current
className
class is excluded, so it is not found when loading.
Troubleshooting and resolution steps
- Check whether
className
exists in Class.forName(className)
. - Check the business code to see whether some classes or packages have been excluded by using the configuration or scanning annotation
exclude
.