I noticed this occurrence in big application where the front end server was gobbling up PermGen quite fast, worst part it kept on increasing on every request, sometimes it just keeps on increasing even though we don't do any request to the application server at all. I faced this with tomcat 6.0.33, tomcat6.0.29 both.
To isolate the problem I picked up struts blank and to my dismay it was showing the same trend. Is this normal? I tried checking out a few version of struts2 like 2.2.1, 2.2.1.1, 2.2.3.1 using maven (mvn archetype:generate) and after running them in jetty, I noticed that the PermGen space is filled up in every request by 2-3KB. I am testing on struts blank and jetty-6.1.21.
Since PermGen is increasing as a function of number of request I suspect how much worthy is it to go to production with it?
inst = Class.forName("com.xxx.yyy.MyClass").newInstance(); ... inst = null;2. Does this class gets unloaded and garbage collected later? – samarjit samanta Jan 13 at 7:35inst = Class.forName("com.xxx.yyy.MyClass").newInstance(); ... inst = null;where you are using this? my original vote still withhvgotcodesonly real profiler dump can help in further analysis – Umesh Awasthi Jan 19 at 5:22inst = Class.forName("com.xxx.yyy.MyBusinessClass").newInstance(); ... inst = null;This is not part of struts, for every request I am dynamically selecting which business class to execute and instantiates them. – samarjit samanta Jan 25 at 4:51