Search code examples
javajavascriptgwtmemory-leaks

How to resolve a memory leak in GWT?


What's the best way to resolve a GWT memory leak due to the fact that GWT is compiled in javascript and code is written in JAVA ?


Solution

  • I can recommend 2 things:

    1. Read this article
    2. Nullify all references when you done with them.

    Good luck!