-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b95
-
generic
-
generic
Mustang includes a potentially very useful demo of jconsole plugins and JavaScript. A new tab is added to jconsole using its plugin API. You can type JavaScript code into that tab and have it executed. Users can build simple monitoring functionality based on this.
The problem is that the JavaScript code typed into the new tab, as well as the code executed from $HOME/jconsole.js, is executed inside Swing's Event Dispatch Thread. This means that the jconsole GUI is completely frozen while it executes. For example, if you type this:
for (i = 0; i < 1000000; i++) ;
into the JavaScript tab, then the jconsole window will completely lock up until the loop completes. If you iconify and uniconify it, it will be an empty grey square until the loop completes. If you have the misfortune to execute an infinite loop, then (at least on Solaris) you will not even be able to exit jconsole by clicking on its window's close button.
The problem is that the JavaScript code typed into the new tab, as well as the code executed from $HOME/jconsole.js, is executed inside Swing's Event Dispatch Thread. This means that the jconsole GUI is completely frozen while it executes. For example, if you type this:
for (i = 0; i < 1000000; i++) ;
into the JavaScript tab, then the jconsole window will completely lock up until the loop completes. If you iconify and uniconify it, it will be an empty grey square until the loop completes. If you have the misfortune to execute an infinite loop, then (at least on Solaris) you will not even be able to exit jconsole by clicking on its window's close button.
- relates to
-
JDK-6445512 jconsole.js includes misleading functions that may create Swing objects not from the EDT
-
- Resolved
-