Replies: 1 comment 23 replies
-
It would be helpful if you actually included the part of stack trace that has |
Beta Was this translation helpful? Give feedback.
23 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have made some modifications to the code of the agent. During the runtime, occasionally, the following issues occur.
I have noticed that the
BootDelegationInstrumentation
class modifies theloadClass
method to delegate the loading of certain classes to the bootstrap class loader. It usesCallDepth
to prevent StackOverflow. However, could this potentially result in certain classes not being loaded by the bootstrap class loader and instead being handed over to the AppClassLoader or other class loaders?I am confused about
NoClassDefFoundError
, Any answers are appreciated.Beta Was this translation helpful? Give feedback.
All reactions