Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2034983 | 1.4.0 | Dmitri Trembovetski | P3 | Resolved | Fixed | beta |
JDK-2034982 | 1.3.1 | Dmitri Trembovetski | P3 | Resolved | Fixed | 1.3.1 |
running a JApplet inside java plugin, after a reload,
the first instance of an JApplet is not gc'ed because of following reference:
(output of HAT)
Static reference from sun.awt.image.BufferedImageGraphicsConfig.configs (from class sun.awt.image.BufferedImageGraphicsConfig) :
--> Instance of [Lsun.awt.image.BufferedImageGraphicsConfig;@0xd086e007 (48 bytes) (Element 1 of Instance of [Lsun.awt.image.BufferedImageGraphicsConfig;:)
--> sun.awt.image.BufferedImageGraphicsConfig@0x40c21708 (4 bytes) (field bImg:)
--> sun.awt.image.OffScreenImage@0xf06adc07 (32 bytes) (field c:)
--> psft.pt75.applet.PanelApplet@0x20fb1e06 (352 bytes)
although this is not a "leak": there is at most 1 instance of applet that
stays around, the customer's applet is very big (~4M) so he would like
to be able to clear any unused instance from memory. he filed an escalation
for this problem 525433
BufferedImageGraphicsConfig has static reference to some image.
one way to get rid of this applet instance is to use some kind of weak
reference to replace this static reference.
add in a test case: StaticTest.java, reload the applet and see if
it prints out "finalized 0"
import javax.swing.*;
import java.applet.*;
import java.util.*;
import java.awt.*;
public class StaticTest extends JApplet
{
static int counter = 0;
int myid;
public void init()
{
myid = counter;
System.out.println( counter++ );
setSize(400,200);
getContentPane().add(new JLabel("abc"));
}
public void finalize() { System.out.println("finalized " + myid); }
}
tao.ma@Eng 2000-07-06
the first instance of an JApplet is not gc'ed because of following reference:
(output of HAT)
Static reference from sun.awt.image.BufferedImageGraphicsConfig.configs (from class sun.awt.image.BufferedImageGraphicsConfig) :
--> Instance of [Lsun.awt.image.BufferedImageGraphicsConfig;@0xd086e007 (48 bytes) (Element 1 of Instance of [Lsun.awt.image.BufferedImageGraphicsConfig;:)
--> sun.awt.image.BufferedImageGraphicsConfig@0x40c21708 (4 bytes) (field bImg:)
--> sun.awt.image.OffScreenImage@0xf06adc07 (32 bytes) (field c:)
--> psft.pt75.applet.PanelApplet@0x20fb1e06 (352 bytes)
although this is not a "leak": there is at most 1 instance of applet that
stays around, the customer's applet is very big (~4M) so he would like
to be able to clear any unused instance from memory. he filed an escalation
for this problem 525433
BufferedImageGraphicsConfig has static reference to some image.
one way to get rid of this applet instance is to use some kind of weak
reference to replace this static reference.
add in a test case: StaticTest.java, reload the applet and see if
it prints out "finalized 0"
import javax.swing.*;
import java.applet.*;
import java.util.*;
import java.awt.*;
public class StaticTest extends JApplet
{
static int counter = 0;
int myid;
public void init()
{
myid = counter;
System.out.println( counter++ );
setSize(400,200);
getContentPane().add(new JLabel("abc"));
}
public void finalize() { System.out.println("finalized " + myid); }
}
tao.ma@Eng 2000-07-06
- backported by
-
JDK-2034982 first instance of (J)Applet is not gc'ed
-
- Resolved
-
-
JDK-2034983 first instance of (J)Applet is not gc'ed
-
- Resolved
-