I'm new to the spring framework and I've inherited code from a dynamic module that is unable to create an application context for an applet because of an unsatisfied dependency. Here's what I get in the log
[17:16:01,156][WARN][startup.DependencyWaiterApplicationContextExecutor] Timeout occured before finding service dependencies for [OsgiBundleXmlApplicationContext(bundle=client, config=osgibundle:/META-INF/spring/*.xml)]
[17:16:01,156][ERROR][startup.DependencyWaiterApplicationContextExecutor] Unable to create application context for [client], unsatisfied dependencies: Dependency on [(objectClass=javax.swing.JApplet)] (from bean [&Applet])
My application-context xml has this reference in it
<osgi:reference id="Applet" interface="javax.swing.JApplet" timeout="10000">
</osgi:reference>
but I don't understand why this dependency would be unresolved. Any ideas?
Thanks


