I am having this weird bug in eclipse when setting my breakpoints it just over lap it without passing through the breakpoint where the method is called. I know it keeps bypassing it for the reason that the only method that is being called is on a lot of breakpoints.
Did anyone encounter this kind of problem or know a fix?
Restarted eclipse and this time I was able to debug properly. Strange bug I am uncertain of knowing the cause and effect.
Make sure that 'Run > Skip all breakpoints' is not enabled.
there can be many many reasons:
The most common ones:
First try cleaning the project by using the clean function
Project > clean...
Please check if you have any beans declared in xml file. If so please check if they are commented we need to uncomment them.
In my case i have a bean declaration in my xml file for that particular bean and it is not loaded at the time of server start. So my debug points are not enabled.
I have uncommented my bean entry then i am able to check debug points and it is working.
hope it will help.
Skip all breakpoints
selected - Sabir Khan 2016-02-08 09:19