How to use Guice in Swing application
- by Gerco Dries
I have a Swing application that I would like to convert from spaghetti to using dependency injection with Guice. Using Guice to provide services like configuration and task queues is going great but I'm now starting on the GUI of the app and am unsure of how to proceed.
The application is basically a JFrame with a bunch of tabs in a JTabbedPane.…