Quantcast
Channel: BlogoSfera » expose
Viewing all articles
Browse latest Browse all 11

Apache Felix Host expose dependencies OSGi

$
0
0

I am using Apache Felix to create an embedded OSGi host application. I am using the following code to expose the packages I want to expose: List<String> extra = new ArrayList<>(); extra.add("some.example.packag.to.expose.1"); extra.add("some.example.packag.to.expose.2"); extra.add("some.example.packag.to.expose.3"); config.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, extra.toString().replace("[","").replace("]", "")); Everything works great and these packages are exposed. However, I need the bundles to have access to ALL […]

The post Apache Felix Host expose dependencies OSGi appeared first on BlogoSfera.


Viewing all articles
Browse latest Browse all 11

Trending Articles