Does anyone have experience debugging java code (code lives on remote Linux server) using Eclipse’s Remote System Explorer? I’m able to explorer files and use the built in shell but I can’t get it to stop on any breakpoints within the eclipse ide.
Does anyone have experience debugging java code (code lives on remote Linux server) using
Share
I’m taking a punt that your remote java server needs to be started using something like:
java -Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y suspend=y -jar stockTradingGUI.jar
Then you will be able to connect using the eclipse remote debugger
For a full run down see: http://javarevisited.blogspot.com/2011/02/how-to-setup-remote-debugging-in.html