Posts

Showing posts with the label eclipse

Basic concepts of Java heap dump analysis with MAT

When you are working with Java, it's always good to know how you can analyze Java Heap dumps with Eclipse Memory Analyzer Tool (MAT). Eclipse MAT is by far the best tool to analyze Java Heap Dumps. Please read my medium story on " Basic concepts of Java heap dump analysis with MAT " to understand basics of heap dump analysis with a sample Java application .

"Subversion Native Library Not Available" Error on Eclipse (with Subclipse) Ubuntu

Image
Do you use Eclipse and Subclipse ? Do you encounter following error: "Subversion Native Library Not Available" Now if you go to Eclipse -> Preferences -> Team -> SVN, you will see that "JavaHL (JNI) is Not Available" for SVN interface. The solution is to install JavaHL . After installing, we need to make sure that Eclipse can see the relevant libraries. For that I just created soft links. sudo apt-get install libsvn-java sudo ln -s /usr/lib/x86_64-linux-gnu/jni/* /usr/lib/ Now restart Eclipse and you should be able use Subsclipse with JavaHL.