After I have re-installed my development machine (and everything on it), IntelliJ (2022.3.2 Ultimate) does not stop at Breakpoints in my Grails 3.3.16 project anymore. It has been working for years before.
I have followed a lot of hints from this question already, like:
- Checking all Java version configurations are the same (8.0.302)
- Checking the firewall is switched off
rm -rf ./.gradle/ ./.idea/
- Invalidate Caches...
- Gradle Reload
- Rebuild Project
- Checked all debug settings
The current status is:
- The breakpoints stay a plain red circle (without a check tick) after starting the Debug mode
- The console mentions "Running application..." , but not anything about a debug mode or port, on startup
- The "Debugger" frame of IntelliJ keeps showing "Connecting to the target VM..."
sudo netstat -ntlp
is telling nothing about the port that the Debugger wants to attach to. So it seems like the code is just not provided on the port that the debugger is attaching to (to put in my words).
Does anyone know any more aspects I should check?