What is 'JNI Global reference'
Asked Answered
E

3

34

I am using jProfiler to find memory leaks in a Java swing application. I have identified instances of a JFrame which keeps growing in count.

This frame is opened, and then closed.

Using jProfiler, and viewing the Paths to GC Root there is only one reference, 'JNI Global reference'.

What does this mean? Why is it hanging on to each instance of the frame?

Earphone answered 22/9, 2008 at 0:1 Comment(0)
S
19

Wikipedia has a good overview of Java Native Interface, essentially it allows communication between Java and native operating system libraries writen in other languages.

JNI global references are prone to memory leaks, as they are not automatically garbage collected, and the programmer must explicitly free them. If you are not writing any JNI code yourself, it is possible that the library you are using has a memory leak.

edit here is a bit more info on local vs. global references, and why global references are used (and how they should be freed)

Stomy answered 22/9, 2008 at 0:52 Comment(1)
Wikipedia is a secondary source. The primary source and official document is the JNI Specification.Flighty
P
24

A JNI global reference is a reference from "native" code to a Java object managed by the Java garbage collector. Its purpose is to prevent collection of an object that is still in use by native code, but doesn't appear to have any live references in the Java code.

A JFrame is a java.awt.Window, and is associated with a "native" Window object. When you are completely finished with a particular JFrame instance, you should invoke its dispose() method to clean up.

I am not sure if any native code is creating a global reference to the JFrame, but it seems likely. If it does, this will prevent the JFrame from being garbage collected. If you are creating many Windows (or subclasses) and seeing that they are never collected, make sure that they are disposed.

Personalty answered 22/9, 2008 at 0:57 Comment(1)
If the code is only Java, this is the most likely explanation. I've had problems with global pointers but I've been working with JNI.Failing
S
19

Wikipedia has a good overview of Java Native Interface, essentially it allows communication between Java and native operating system libraries writen in other languages.

JNI global references are prone to memory leaks, as they are not automatically garbage collected, and the programmer must explicitly free them. If you are not writing any JNI code yourself, it is possible that the library you are using has a memory leak.

edit here is a bit more info on local vs. global references, and why global references are used (and how they should be freed)

Stomy answered 22/9, 2008 at 0:52 Comment(1)
Wikipedia is a secondary source. The primary source and official document is the JNI Specification.Flighty
I
15

I had this exact problem when fixing memory leaks in a JavaFX application. In the end the problem turned out to be that i was running the application in debug mode and had several breakpoints in the code. This seems to have caused objects to be 'JNI Global reference' and being kept in memory without apparent reason. When i turned off the debug mode everything worked as it should!

Iong answered 22/5, 2015 at 8:53 Comment(2)
Crap, this is exactly what just happened to me!Gyron
One more here.. hahaLaccolith

© 2022 - 2024 — McMap. All rights reserved.