How to remotely debug your java application on a Linux/Mac?
What you need Eclipse Tomcat Terminal What you have to do Setting up environment First of all you have to add the following lines to your .bash_profile (or .bashrc? what do you think? in mac .bash_profile, in linux .bashrc) export JPDA_ADDRESS=8000 export JPDA_TRANSPORT=dt_socket (You can change the port 8000 to the port of your choice). …