Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Very slow debugging in Eclipse

I try to debug Jonas webapp under Eclipse. Unfortunately when I connect to the remote application everything works terriblly slow (also after killing all java applications and restarting the PC). I use also JRebel. What might be the cause of such behaviour?

like image 239
Adam Sznajder Avatar asked Sep 17 '25 04:09

Adam Sznajder


1 Answers

You could also try using the Java Monitoring and Management Console. This may help show where the "slowness" is. Keep an eye on the garbage collector and how much time the JVM is spending dowing garbage collection.

http://docs.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html

like image 65
km1 Avatar answered Sep 18 '25 19:09

km1