java.lang.NoClassDefFoundError: java/sql/ResultSet #1730
Replies: 4 comments 7 replies
-
Is the JVM using the module system? Some classes might not be included by the module graph. |
Beta Was this translation helpful? Give feedback.
-
If your app has a module-info file, yes. |
Beta Was this translation helpful? Give feedback.
-
Are you adding Byte Buddy to the boot loader? The SQL module is added to the platform loader. |
Beta Was this translation helpful? Give feedback.
-
If you, from your agentmain, run: M̀ySqlJdbcMonitor.class.getClassLoader() |
Beta Was this translation helpful? Give feedback.
-
As a beginner, why do I get a java.lang.NoClassDefFoundError: java/sql/ResultSet when executing -javaagent: ./my-agent.jar? I am referencing it inside the interceptor.
Beta Was this translation helpful? Give feedback.
All reactions