How do I minimize garbage collection interruption in my real time Java server application code?
the best way to minimize the garbage collection interruption is , do not leave any un-referenced objects in your program. in other words, when you create objects in your program , after working with them kill them by assigning null .
I am looking for a free/open source tool to identify memory leaks in my JNI program. I am using : java version "1.6.0_45", Java HotSpot(TM) 64-Bit Server.
Any suggestions?
I have a web application developed using Struts2. In my web application I have a link using which users can download a zip file. I need to create this zip file at run time based on some conditions. How can I do this in Struts2?