Slow Startup for Swing Applications in Eclipse Equinox

Slow Startup for Swing Applications in Eclipse Equinox

The Problem I have created a very simple Swing class, which is to be started by an OSGi Declarative Service. public class SwingOSGiApplicationService implements ApplicationService { public void activate() {                 System.out.println("Starting Application Service; show window");                 Runnable launcher = new Runnable() {                         @Override                         public void run() {                                 JFrame aWindow = new JFrame(

By Max Rohde