The default behaviour of Sun "server" HotSpot is to enlarge the heap rather than clearing SoftReferences (used for caches). The default was to keep them for one second for every megabyte of maximum heap size available. So, expect the heap to grow to the maximum size. If you do actually run out of memory with OutOfMemoryException or performance becomes poor (due to excessive GC or small caches), then you need to look for memory leaks.
Also Tomcat suffers servers often suffer from memory leaks from after reloading applications. For instance, Tomcat shares threads between all applications, which often causes Sun's ThreadLocal implementation to improperly retain values.
