Reputation: 453
When I'm debugging my Java EE application on Weblogic from Eclipse, in some cases just the fact that the debug is connected and enabled, causes high CPU utilization. The moment that I disconnect from debug port, the CPU utilization drops to normal levels.
What can cause it and how can I solve it? Thanks!
Update(s): Java version 1.6.0_45 (64bit)
Upvotes: 0
Views: 1334
Reputation: 5798
in java debugging you can do something called method debugging, that type of method debugging severely impacts performance, make sure you didnt accidently added one of those
Upvotes: 1