My InelliJ Idea is not going into debug and hitting my break points, it just runs through
Answered
Hi All,
I have a Java project and it is connecting to a jetty server. I have been using this project for a while and I have been setting break points and debugging with no issues. All of a sudden the debugging facility is not working, the project just runs through and does not stop at any debug point. I am not sure what went wrong.
I have been stuck with this for few days now so any help is much appreciated.
Thanks,
Ghada
Please sign in to leave a comment.
Make sure sources and classes are in sync and the classes were built with debug info enabled.
To investigate further we'll need a reproducible test case.
You can also try starting with all the defaults (remove IDE folders: https://intellij-support.jetbrains.com/hc/articles/206544519), then rebuild the project.
It's also possible to get the logs from the debugger to understand what happens: https://intellij-support.jetbrains.com/hc/en-us/articles/207241125-Collecting-Java-debugger-logs
I found what the problem is. In one of my XHTML pages regEx was throwing an error because of an invalid edit pattern on one of the numeric fields. The problem that the error was never displayed so it threw me off.
Thanks for all your efforts to help!
Ghada