How to create/generate OSGi bundles from existing third-party jars?
If you get to work with OSGi, you often have to generate OSGi bundles. Any third party jar can’t be included straightaway in your application – you need to create an OSGi bundle of the jar you want to include.
Quoting from http://blog.springsource.org/2008/02/18/creating-osgi-bundles/,
a bundle is a JAR file that:
- Contains [...] resources
- Contains a manifest file describing the contents of the JAR file and providing information about the bundle
- Can contain optional documentation in the OSGI-OPT directory of the JAR file or one of its sub-directories
In short, a bundle = jar + OSGI information (specified in the JAR manifest file – META-INF/MANIFEST.MF), no extra files or predefined folder layout are required. This means that all it takes to create a bundle from a jar, is to add some entries to the JAR manifest.
Before you use any tool/plugin to generate OSGi bundles, do search in public OSGi repositories like SpringSource Enterprise Bundle Repository etc. to see if there’s an OSGi bundle already made available.
Assume that we’re wrapping a vanilla jar file, c3p0-0.9.1.2.jar, which is a popular connection pool library, as an OSGi bundle. Here’s the way I do it:
Related articles1. Download aQute’s BND tool from here: http://dl.dropbox.com/u/2590603/bnd/biz.aQute.bnd.jar
2. Create bnd.property file (See below for a sample file).bnd.properties
version: 0.9.1.2
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.mchange.v2.c3p0
Bundle-Version: ${version}
Bundle-Name: c3p0
Export-Package: *;version=${version}
Import-Package: *3. Run this command: java -jar biz.aQute.bnd.jar wrap -properties bnd.properties c3p0-OSGi.jar
4. You’ll get c3p0-OSGi.bar, which needs to be renamed to c3p0-OSGi.jar. That’s it, you have the OSGi bundle.
- Creating OSGi projects using Eclipse IDE and Maven (singztechmusings.wordpress.com)
- OSGi adoption by Large Scale Java-based Enterprise Software Platforms – LinkedIn Case Study (singztechmusings.wordpress.com)
- Working with OSGi and Maven in Eclipse IDE (singztechmusings.wordpress.com)
- imabonehead: Building LinkedIn’s Next Generation Architecture with OSGi (slideshare.net)
- Apache moves Geronimo to OSGi base (infoworld.com)
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)






Comments
Charlie Mordant replied on Fri, 2011/12/02 - 5:04am
Hi,
pax-construct does the same think for the jar and all its dependencies if needed.
You've to note that it work just for simples jars, not for advanced libraries like hibernate, jsr303, ... All that interacts with classloader, aop scanning...
Regards, OSGI to the top
Lars Heppler replied on Fri, 2011/12/02 - 7:34pm
you can even do this on-the-fly with pax-url or with the eclipse plugin bndtools
there's a feature "wrap jar as osgi bundle"
Regards