Reputation: 94
I am new to java.
I have installed the decompiling plugin to the eclipse. My project contains some external
jars like spring mvc jars.I have opened one of the predefined class from one jar file using decompiler.
Its corresponding .class file is opened and this .class file does not support debugging.
How can i debug that class?
Upvotes: 0
Views: 72
Reputation: 17923
I would suggest to look how the debugging happens first.
-g
option. e.g. javac -g YourClass.java
So, to get you working, what you do is to re-compile the decompiled source and use that for debugging.
Here is relevant link your can refer to.
Upvotes: 2