I am working on a big Java project which is on eclipse. To use the program we need to invoke a perl script in the terminal with the parameters then that script will call the program. In this case how can I debug the program in eclipse?
In summary : perl program invokes java program and I need to debug the Java program in eclipse
Perhaps you could you do this using java remote debugging in Eclipse.
Your perl script would have to launch the java app with options to enable remote debugging in the JVM, for example
You then tell Eclipse to connect to that JVM by making a “Remote Java Application” debug configuration that specifies the correct host/port.