
Categories
Love seeks a complement not an opposite

play run
will start the local (Netty) server and your app will be available at localhost:9000.play ~run
will start the local server and reload it automatically every time you change a file of you app, that way you don’t need to hit refresh (F5) on your browser.applyEvolutions.your_database_name=true
to your application.conf file. For instance, considering the default database, you should add applyEvolutions.default=true
.play debug run
.Run > Debug Configurations...
and double-click Remote Java Application
. This will add a new configuration.Connect
tab, find Connection properties
and change Port
to 9999
.Common
tab, check Debug
so that it later appears below the Debug icon. Click Apply
. Click Debug
.That’s it! Check this video for a live explanation.