You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running the application from the command line with ./gradlew run, it replies to requests to localhost:8080, but then there are a couple of problems:
If a change the text in MainVerticle, the console shows that it's being redeployed INFO: Succeeded in deploying verticle, but subsequent requests to localhost:8080 still show the old text.
After killing it with Ctrl+C, it still replies to requests to localhost:8080, and starting it again with ./gradlew run, it shows Starting a Gradle Daemon, 1 busy Daemons could not be reused, use --status for details, and the port is still in use SEVERE: java.net.BindException: Address already in use: bind.
So I go and manually kill the process using the port 8080. Now I can start the application successfully (the port is no longer used), but it shows that there are now 2 running daemons.
PS: I'm using Windows 10.
The text was updated successfully, but these errors were encountered:
After running the application from the command line with
./gradlew run
, it replies to requests to localhost:8080, but then there are a couple of problems:./gradlew run
, it showsStarting a Gradle Daemon, 1 busy Daemons could not be reused, use --status for details, and the port is still in use SEVERE: java.net.BindException: Address already in use: bind
.So I go and manually kill the process using the port 8080. Now I can start the application successfully (the port is no longer used), but it shows that there are now 2 running daemons.
PS: I'm using Windows 10.
The text was updated successfully, but these errors were encountered: