You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Thomas Spiegl (JIRA)" <de...@myfaces.apache.org> on 2007/06/08 10:52:26 UTC

[jira] Created: (MYFACES-1660) memory leak in JspStateManagerImpl

memory leak in JspStateManagerImpl
----------------------------------

                 Key: MYFACES-1660
                 URL: https://issues.apache.org/jira/browse/MYFACES-1660
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions:  1.1.6-SNAPSHOT, 1.2.0-SNAPSHOT
            Reporter: Thomas Spiegl
            Priority: Blocker


André Næss reported a memory leak in JspStateManagerImpl:

http://www.mail-archive.com/dev@myfaces.apache.org/msg22905.html


_oldSerializedViews = new ReferenceMap();
needs to be substituted by
_oldSerializedViews = new ReferenceMap(AbstractReferenceMap.WEAK,
AbstractReferenceMap.WEAK, true);


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (MYFACES-1660) memory leak in JspStateManagerImpl

Posted by "Bruno Aranda (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-1660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bruno Aranda resolved MYFACES-1660.
-----------------------------------

    Resolution: Duplicate
      Assignee: Bruno Aranda

> memory leak in JspStateManagerImpl
> ----------------------------------
>
>                 Key: MYFACES-1660
>                 URL: https://issues.apache.org/jira/browse/MYFACES-1660
>             Project: MyFaces Core
>          Issue Type: Bug
>    Affects Versions:  1.1.6-SNAPSHOT, 1.2.0-SNAPSHOT
>            Reporter: Thomas Spiegl
>            Assignee: Bruno Aranda
>            Priority: Blocker
>
> André Næss reported a memory leak in JspStateManagerImpl:
> http://www.mail-archive.com/dev@myfaces.apache.org/msg22905.html
> _oldSerializedViews = new ReferenceMap();
> needs to be substituted by
> _oldSerializedViews = new ReferenceMap(AbstractReferenceMap.WEAK,
> AbstractReferenceMap.WEAK, true);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.