Uploaded image for project: 'Struts 2'
  1. Struts 2
  2. WW-3402

StrutsSpringTestCase - Memory Leak

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.1.8
    • 2.2.1
    • Unit Tests
    • Eclipse 3.5, Linux Fedora 10.

    Description

      I ran into an issue with the StrutsSpringTestCase class when doing my unit tests.
      Basically the memory kept climbing until it crashed the machine.

      This class is actually loading the applicationContext for every test case that extends
      it. And because the applicationContext is static the instances of the spring beans loaded
      are not cleaned up by the garbage collector. I could verify this by using JVisualVM and seeing the memory usage climb and by doing a heap dump and seeing the multiple instances of Spring beans.

      What I ended up doing was overriding the method with the following in my base test class
      for Struts 2. The only difference being the check to see if applicationContext is null.
      This has the added benefit of speeding up the tests.

      protected void setupBeforeInitDispatcher() throws Exception {
      // only load beans from spring once
      if (applicationContext == null)

      { GenericXmlContextLoader xmlContextLoader = new GenericXmlContextLoader(); applicationContext = xmlContextLoader.loadContext(getContextLocations()); }

      servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
      applicationContext);
      }

      Maybe someone can update the repository with this.

      Attachments

        Activity

          People

            lukaszlenart Lukasz Lenart
            cballantyne Carl Ballantyne
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: