I'm deploying a relatively simple web application to Tomcat 7.0.8 (JVM 1.6).

The app registers a ServletContextListener and has a single resource called "data" located in WEB-INF. The "data" file contains a single serialized instance of a simple class called Data. Data has a few public String and Integer fields but nothing else. It implements Serializable and defines its own serialVersionUID.

In the contest listener, contextInitialized() does the following:

  1. Get an InputStream to "data" from the ServletContext,
  2. Create an ObjectInputStream from the InputStream,
  3. Read a single object from the ObjectInputStream,
  4. Cast it to the type "Data",
  5. Write the field values to System.out,
  6. Close the ObjectInputStream and its backing InputStream.

Everything seems to work fine. However when I stop the webapp through Tomcat's manager application, then check for memory leaks, Tomcat informs me that my app leaked memory when it was stopped.

I'm positive the issue is with the Data class, since when I serialize a String or Integer I don't see the leak.

Any thoughts?

link|improve this question

47% accept rate
feedback

1 Answer

If this file is read in once on initialization of the web app, how is a memory leak significant? Does it even merit the title?

Memory leaks are significant to Tomcat and all app servers because they're intended to stay alive for a long time. Memory leaks are an issue only if they show up over a longer period of time.

Your instincts are good, but your procedures are flawed in my opinion.

I'd recommend that you use a better tool - the Visual VM that's bundled with JDK 6 and higher - and that you monitor your Tomcat while it's being used in a manner that's closer to your real production needs.

You can't draw any conclusion regarding memory leaks from a single request.

link|improve this answer
1  
Read in only once. And this isn't for a enterprise app- just something I'm putting together for personal use. It's not a matter of how significant the leak is, I just want to know why Tomcat is complaining. Is it a bug in Tomcat, or am I actually doing something in a "bad" way? By the way- I rewrote the serialization to use JSON as the underlying format (using Jackson for serializing/deserializing) and Tomcat still reports a leak. Also- when I say "check for memory leaks" I'm talking about using Tomcat's own "find leaks" button in the Manager app. – user190758 Mar 14 '11 at 2:08
Scratch that- Jackson doesn't have the problem. Maybe Java's object serialization is doing something internally that's ill-advised? – user190758 Mar 14 '11 at 2:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.