Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

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.

share|improve this answer
So there's no way to do this without adding a java module? – ripper234 Aug 26 '09 at 13:53
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 Aug 26 '09 at 14:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.