-
I tried to debug an application in Is this normal? How do you guys debug in intellij without these class loading exceptions? ... and many more |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
/cc @geoand as you're familiar with our CL infrastructure and it seems to be related to it. |
Beta Was this translation helpful? Give feedback.
-
Yes, it's absolutely normal because of the hierarchical nature of the ClassLoaders in dev mode. Generally I have found that using breakpoints in ClassLoader code is difficult (even without Quarkus), because there are a ton of classes being loaded and because conditional breakpoints don't really work due to the recursiveness of the classloading mechanism |
Beta Was this translation helpful? Give feedback.
Yes, it's absolutely normal because of the hierarchical nature of the ClassLoaders in dev mode.
Generally I have found that using breakpoints in ClassLoader code is difficult (even without Quarkus), because there are a ton of classes being loaded and because conditional breakpoints don't really work due to the recursiveness of the classloading mechanism