I have an application written in Java to run on Linux. I am developing in the eclipse under windows. To run code on the Linux box and to debug a remote on Windows I have got some information about doing this, but it is very rare Can anyone explain (or point out) the whole process?
Any help would be appreciated
(jpda) remote debugging support Does. First of all, you need to enable the remote debugging of your application by loading the JWPP agent to debug your application's JVM. Starting with Java 5.0, use the -agentlib: jdwp
option. See) 1 for all details and examples, configure Eclipse to connect to the debugger. Check it out. To be released prior to 5.0, -Xdebug
and -Xrunjdwp
are used for
1 5.0 .
Comments
Post a Comment