Debugging a Java application… Remotely!
Have you ever had the need to debug a Java application remotely? You can! This post describes how you can do using Java and Eclipse. Let’s start by describing some important Java remote debugging parameters that we’ll make use of later. transport=dt_socket instructs the JVM that the debugger connections will be made through a socket address=8998 opens port number 8998 for use by the debug session suspend=y starts the JVM in...