I have read a lot of equinox code for this, but still can't figure out a non-hacky way of getting the classloader for a osgi bundle in eclipse equinox setup. Is there one?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The short answer (certainly for OSGi 4.1, not sure of 4.2) is you can't get a bundle's classloader. However the |
|||
|
|
|
In normal java code, you can get the class loader that loaded a given object with
Or even just
The same applies to Equinox, just use an object or type that comes from the bundle you are interested in. |
|||||
|