I came upon the following obstacle whilst developing in OSGi. One set of bundles, responsible for persistence, uses the com.mysql.jdbc.Driver class, offered by another (Springsource EBR provisioned) bundle. In another bundle I'm configuring the Quartz scheduler library to use a database as a jobstore. This is also done using the MySQL driver. Upon running however, I get a ClassNotFoundException. This is strange, since the persistence still functions correctly. Even more strange, when I try to manually load the class, using Class.forName("com.mysql.jdbc.Driver") it is loaded correctly, implying that the class is indeed available for loading.
Coincidence or not, the same seems to be happening with Drools... I repackaged some of the latest Drools jars as OSGi bundles, deployed them and when running again the ClassNotFoundException pops up. In both cases all supplier bundles are added to the required bundles in the manifest.
Does this weird issue ring any bells? I'd be happy to hear about it...
Export-PackageandImport-Packageheaders. – Progman May 2 '11 at 14:47