Can i remote debug using decompiled java classes?
I am trying to remote debug my code that is running in jvm of server. I am using a decomplied jar, I am getting it from server, then I put it on my workstation, I go to intellij, project structure, modules, then dependencies, and there I click on plus button to add my jar.
After adding my jar, I can see it under external libraries, and I can see the classes under it (.class format).
When I put break point on function viewProfiles, and I trigger the action to viewProfiles, it never hits the...