Reputation: 51
I am using Scala to write a web on top of Play framework with eclipse IDE. I am trying to debug my app but hit debug attach failure. I tried to switch using Java instead of Scala,but I got same error. This is what I do.
play clean compile
play debug run
>GET / HTTP/1.1< - expected >JDWP-Handshake<
Any idea what is wrong?
Upvotes: 3
Views: 12560
Reputation: 3449
localhost:9999
is what Eclipse is going to use to communicate with your application. On your browser, you still access your application on localhost:9000
(default) or however you would access your application had you just done play run
.
Basically, you've configured your debugging correctly in Eclipse.
localhost:9999
.localhost:9000
like you normally would to access your application.Upvotes: 10