Reputation: 8183
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 ?
Upvotes: 3
Views: 4666
Reputation: 8278
I can recommend 2 things:
Good luck!
Upvotes: 6
Reputation: 48015
In GWT development mode you can use a Java profiler such as VisualVM or JProfiler (disclaimer: JProfiler is developed by my company) to analyze the heap.
The GWT development mode should show the same leak as well, except for the less likely case that the leak related to the Javascript translation (which would then be a bug in GWT).
Upvotes: 1