Java: Swing Libraries & Thread Safety

后端 未结 11 2214
后悔当初
后悔当初 2020-11-28 05:27

I\'ve often heard criticism of the lack of thread safety in the Swing libraries. Yet, I am not sure as to what I would be doing in my own code with could cause issues:

相关标签:
11条回答
  • An alternative to using intelligent skins like substance is to create the following utility method:

    public final static void checkOnEventDispatchThread() {
        if (!SwingUtilities.isEventDispatchThread()) {
            throw new RuntimeException("This method can only be run on the EDT");
        }
    }
    

    Call it in every method you write that is required to be on the event dispatch thread. An advantage of this would be to disable and enable system wide checks very quickly, eg possibly removing this in production.

    Note intelligent skins can of course provide additional coverage as well as just this.

    0 讨论(0)
  • 2020-11-28 05:43

    If you're using Java 6 then SwingWorker is definately the easiest way to deal with this.

    Basically you want to make sure that anything that changes a UI is performed on the EventDispatchThread.

    This can be found by using the SwingUtilities.isEventDispatchThread() method to tell you if you are in it (generally not a good idea - you should know what thread is active).

    If you aren't on the EDT then you use SwingUtilities.invokeLater() and SwingUtilities.invokeAndWait() to invoke a Runnable on the EDT.

    If you update UI's not on the EDT you get some incredibly strange behaviour. Personally I don't consider this a flaw of Swing, you get some nice efficiency by not having to synchronize all of the threads to provide a UI update - you just need to remember that caveat.

    0 讨论(0)
  • 2020-11-28 05:50
    1. Never do long running tasks in response to a button, event, etc as these are on the event thread. If you block the event thread, the ENTIRE GUI will be completely unresponsive resulting in REALLY pissed off users. This is why Swing seems slow and crusty.

    2. Use Threads, Executors, and SwingWorker to run tasks NOT ON THE EDT ( event dispatch thread).

    3. Do not update or create widgets outside of the EDT. Just about the only call you can do outside of the EDT is Component.repaint(). Use SwingUtilitis.invokeLater to ensure certain code executes on the EDT.

    4. Use EDT Debug Techniques and a smart look and feel (like Substance, which checks for EDT violation)

    If you follow these rules, Swing can make some very attractive and RESPONSIVE GUIs

    An example of some REALLY awesome Swing UI work: Palantir Technologies. Note: I DO NOT work for them, just an example of awesome swing. Shame no public demo... Their blog is good too, sparse, but good

    0 讨论(0)
  • 2020-11-28 05:50

    This is one of those questions that makes me glad I purchased Robinson & Vorobiev's book on Swing.

    Anything that accesses the state of a java.awt.Component should be run inside the EDT, with three exceptions: anything specifically documented as thread-safe, such as repaint(), revalidate(), and invalidate(); any Component in a UI that has not yet been realized; and any Component in an Applet before that Applet's start() has been called.

    Methods specially made thread-safe are so uncommon that it's often sufficient to simply remember the ones that are; you can also usually get away with assuming there are no such methods (it's perfectly safe to wrap a repaint call in a SwingWorker, for example).

    Realized means that the Component is either a top-level container (like JFrame) on which any of setVisible(true), show(), or pack() has been called, or it has been added to a realized Component. This means it's perfectly fine to build your UI in the main() method, as many tutorial examples do, since they don't call setVisible(true) on the top-level container until every Component has been added to it, fonts and borders configured, etc.

    For similar reasons, it's perfectly safe to build your applet UI in its init() method, and then call start() after it's all built.

    Wrapping subsequent Component changes in Runnables to send to invokeLater() becomes easy to get right after doing it only a few times. The one thing I find annoying is reading the state of a Component (say, someTextField.getText()) from another thread. Technically, this has to be wrapped in invokeLater(), too; in practice, it can make the code ugly fast, and I often don't bother, or I'm careful to grab that information at initial event handling time (typically the right time to do it in most cases anyway).

    0 讨论(0)
  • 2020-11-28 05:55

    Actively avoid doing any Swing work at all except on the event dispatching thread. Swing was written to be easy to extend and Sun decided a single-threaded model was better for this.

    I have had no issues whilst following my advice above. There are some circumstances where you can 'swing' from other threads but I've never found the need.

    0 讨论(0)
  • 2020-11-28 05:55

    invokeLater() and invokeAndWait() really MUST be used when you are doing any interaction with GUI components from any thread that is NOT the EDT.

    It may work during development, but like most concurrent bugs, you'll start to see weird exceptions come up that seem completely unrelated, and occur non-deterministly - usually spotted AFTER you've shipped by real users. Not good.

    Also, you've got no confidence that your app will continue to work on future CPUs with more and more cores - which are more prone to encountering weird threading issues due to them being truely concurrent rather than just simulated by the OS.

    Yes, it gets ugly wrapping every method call back into the EDT in a Runnable instance, but that's Java for you. Until we get closures, you just have to live with it.

    0 讨论(0)
提交回复
热议问题