Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With the import mechanism in OSGi, it is straightforward to import packages from another bundle. However, I have been unsuccessful in importing resources that exist in the "root" of the bundle.

Is it at all possible to import resources that aren't package scoped in to another bundle?

What I would like to achieve is this:

Bundle A has a file resource in the "root"

Bundle B imports bundle A:s packages and resources. Through bundle B:s ClassLoader, I'd like to be able to load the resource in bundle A as if it existed in Bundle B.

share|improve this question
i am also looking for exactly this, the only method i can think of is by getting it directly from the jar without using osgi, download.oracle.com/javase/tutorial/uiswing/components/… .. but this defeats the purpose of osgi i guess – FUD Sep 27 '11 at 5:01

2 Answers

up vote 9 down vote accepted

Resources in the root of a bundle are in the "default" package, which cannot be imported or exported.

If you really must access the resources via classloader, you need to move them into a package and export that package. Otherwise you can use Bundle.getEntry() to read resources from any location of any bundle.

share|improve this answer
Thanks Neil, this is exactly what I needed to know! – Christer Fahlgren Sep 27 '11 at 14:02
FWIW, I have implemented a workaround that simply tries both ClassLoaders when a resource is loaded. – Christer Fahlgren Sep 27 '11 at 16:43

You can use OSGi Fragment bundles. For your case: bundle B is a host and bundle A is a fragment of the bundle B. But bundle B has access to all classes and resources (folders) of bundle A.

More details in OSGi Core Spec #3.13 Fragment bundles

share|improve this answer
Dmitry, unfortunately both bundles are existing jars that I am wrapping as bundles and if I understand it correctly a fragment can only be attached to a single bundle (and it needs to be connected to multiple bundles). – Christer Fahlgren Sep 27 '11 at 6:26
Christer, you can fetch bundle resources with Bundle#findEntries() and Bundle#getEntry() methods. – Dmytro Pishchukhin Sep 27 '11 at 6:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.