I just moved from Netbeans to Eclipse. In Netbeans, I can debug Playframework applications out of the box. However, in Eclipse, it seems hard to configure this in order to debug
As of Play 2.0, the eclipse
folder and launchers are no longer generated when you run play eclipsify
. After running play eclipsify
, you can debug your project in Eclipse as follows:
play debug run
.Debug As -> Debug Configurations...
Remote Java Application
, then click New
.localhost
. Set the port to 9999
(the default port used by the play debug run
command).Apply
to save, then Debug
to connect to your running Play instance.