Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Memory leak in native java aplication

Hi all!

I have a Native Java application in linux and i want detect memory weak. I try used Valgrind but seem that don't work fine. Then I tried to also install dbx (Oracle Studio) but it seems that is not available for Ubuntu 14.04. Is there another solution that can be used to detect these leaks ?

like image 706
Alex Avatar asked Dec 20 '25 01:12

Alex


1 Answers

In my opinion, the best tool you can use to detect memory leaks and performance problems is JProfiler

You can easily detect both of them and it has integrations with a lot of IDEs (Eclipse, STS, Netbeans, IntelliJ, etc...).

It's not free, but you can request an evaluation key to test the tool for about 10 days.

like image 71
jfcorugedo Avatar answered Dec 22 '25 14:12

jfcorugedo