How do I debug my Java source code that I am calling from the MATLAB environment?

1 view (last 30 days)
Based on the following link:
In order to debug Java code being called from the MATLAB environment, use the following steps:
1. Relaunch MATLAB using the -jdb flag from a command prompt. For example:
matlab -jdb
(by default this flag will enable debugging support in the VM on port 4444)
2. You can either launch a Java debugger from a Java IDE such as Eclipse and Intellij, or call jdb from the system command prompt. MATLAB displays the message “JVM is being started with debugging enabled” and provides the appropriate information. For example:
jdb -connect com.sun.jdi.SocketAttach:port=4444
3. After attaching the debugger you will be able to set breakpoints as you normally would.
Can anyone explains these steps more detail, especially for step 3? How to attach the debugger (Assuming I'm using eclipse).
Thanks

Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!