I\'m trying to use the Eclipse VisualVM launcher. It seems pretty nice, except that it seems to spawn an instance if VisualVM too late to do any profiling of my application. My
This is a dumb solution, but works. Here it goes:
Add an infinite loop wrapper to your application, say "while(true) { your_app }".
The timing noises will also even out as your program runs longer.