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:
- Get an InputStream to "data" from the ServletContext,
- Create an ObjectInputStream from the InputStream,
- Read a single object from the ObjectInputStream,
- Cast it to the type "Data",
- Write the field values to System.out,
- 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?