I have several application deployed in Weblogic Server. When I run the server in debug mode, some of my application stops at break point, some stops in class file and other don't even bother to stop at break point. What could be the reason that debugger works for one application and not for the other?
Asked
Active
Viewed 1,567 times
1
-
Is your code in sync with what is running on the server ? – Romain Hippeau Mar 28 '12 at 17:50
-
Yes Romain. I made sure I did fresh build and redeployed ear in Weblogic. – user1171699 Mar 28 '12 at 18:23
1 Answers
0
Are you sure that you start all these application in debug mode? Another case maybe breakpoints are not achieved.

Łukasz Rzeszotarski
- 5,791
- 6
- 37
- 68
-
-
hmmm... strange. Try When you look in debug perspective to look at threads list. There you have listed all threads that are started at your server. Make sure yourself that there is no more threads in breakpoints than you think. Sometimes eclipse doesn't show at 'first' plan thread that is in breakpoint. But you can switch between threads by clicking on them in threads list window. – Łukasz Rzeszotarski Mar 28 '12 at 20:23
-
I found where the error was. It was in .CLASSPATH file. Thanks for looking into this issue Lukasz. – user1171699 Mar 28 '12 at 20:56