Hi,
I'm able to debug the GWT client okay (in Chrome). However, debugging the SpringBoot server in IntelliJ isn't working.
I already have the code server running, and then I start the server with:
mvnDebug spring-boot:run -pl mywebapp-server -am
The server then waits for the debugger to attach, so I start up a remote JVM debug in IntelliJ:
And it attaches to the server, which then triggers the server to continue its start.
Everything is now up and running great.
However, putting breakpoints in the server code in IntelliJ, the breakpoints never get hit. Any suggestions as to why?
This might not be a GWT issue, so apologies if it isn't.
Thanks.