In this blog I will explain how I have build a web application using Akka, Play and Java.
Full source code is available at https://github.com/robbertvdzon/playwebapp-contactdb
Lees meer »
Categorie: IntelliJ
Install IntelliJ with git and debug/hotdeploy to wildly
Install IntelliJ
Install the Community Edition of intelliJ.
Git in Intellij
In intelliJ: VCS – Enable Version Control Integration | choose git
Enable Debugging:
Start wildfly with the option –debug (run “standalone.bat –debug 8787”)
Lees meer »
Debug a remote wildfly application using Intellij
To be able to debug a remote wildfly application, the wildfly application must be started using the following arguments:
--debug 8787
In Intellij:
Run – Debug – Edit Configurations.
In this screen press ‘+’ and choose ‘remote’.
You can name this ‘wildfly remote’ and set the host to the remote server’s ip-addess and set the port to 8787.
By pressing the ‘Debug’ button, a connection to the remote wildfly will be created and you will be able to place breakpoints on the remote wildfly,