Hi
I haven't checked this on JBoss but this pattern is consistent with the heap
usage patterns on other containers and application servers. It is due to the
application server threads running in the background and the objects
allocated/GC'd for that purpose. This is not something to be concer
Hi Jagadeesh
The size of the war file will have very little impact on you receiving the
OutOfMemoryException. Typically, this can be caused by either your application
creating Objects on the Heap where a reference is retained to the Object
(memory leak) or through resource contention.
What