0-7 - Reflection class not found
0-7 - Reflection class not found
Possible Reasons
- Generally, this occurs when
Class.forName(className)
is executed and the current classclassName
cannot be found. - The business logic explicitly excludes the current
className
class, resulting in it not being found during loading.
Troubleshooting and Resolution Steps
- Check if
className
exists inClass.forName(className)
. - Investigate the business logic to see if any configuration or scanned annotations use
exclude
to exclude certain classes or packages.
Feedback
Was this page helpful?
Yes No
Last modified September 30, 2024: Update & Translate Overview Docs (#3040) (d37ebceaea7)