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 class className 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 in Class.forName(className). - Investigate the business logic to see if any configuration or scanned annotations use
exclude to exclude certain classes or packages.