Say you have the source of an application, and you're debugging the jar via JMX. How do you tell IntelliJ where the source is?
+1
A:
You simply need a Java module in your project the references the sources (and I suspect the classes) and then run a remote debug session against your server.
Nick Holt
2009-08-26 13:09:02
So there's no way to do this without adding a java module?
ripper234
2009-08-26 13:53:46
This is how I've always done it because it's been my code I've been debugging and so I've had a module anyway. You could play with setting up a project library and include the source there.
Nick Holt
2009-08-26 14:18:13