Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning

By default Spring OSGi loads its xml config file files asynchronously, which causes the OSGi plugin to fail while starting. To fix this add this line to MANIFEST.MF:

No Format
Spring-Context:*;create-asynchronously:=false

Or if using The Apache Felix maven plugin (see below for details):

Code Block
xml
xml
<Spring-Context>*;create-asynchronously:=false</Spring-Context>

...