Re: Actions are not Garbage Collected

2009-07-10 Thread Anselmo
The only references I have to my action are localeProvider of com.opensymphony.xwork2.TextProviderSupport which has references from the action again. Is this maybe running in circles? -- View this message in context: http://www.nabble.com/Actions-are-not-Garbage-Collected-tp24425128p24432059.h

Re: Actions are not Garbage Collected

2009-07-10 Thread Anselmo
Hi guys, thanks for your answers. Atually I'm not using the spring framework. I use hibernate and have a lot of entity beans in the actions. If I call 50 actions i have 50 of them in the memory and every action has e.g. 50 products, so i have 2500 of the same products in my memory. Is der a pos

Actions are not Garbage Collected

2009-07-10 Thread Anselmo
I started to profile my app with YourKit and JMeter, because of increasing request times. Obviously Actions in my app are not garbage collected until a major collection when the heap is full. This also happens with the showcase app from struts. Any idea which objects still reference the Actions