Hello,
I have multiples OSGi bundles that use the same configuration properties. Now I create a below service for each bundle:
@ObjectClassDefinition(name = "My configuration service", description = "Configuration for bundle")
public @interface MyConfig {
@AttributeDefinition(name = "My API:", description = "API endpoint for project", type = AttributeType.STRING)
String myPropAPI() default "....";
...
}
@activate
protected void activate(final MyConfig config) {
this.api_endpoint = this.config.myPropAPI();
}
Is it possible for other bundles to share this configuration service? Or should I create a property file accessed directly by all bundles?
Thanks for any input
Solved! Go to Solution.
Views
Replies
Total Likes
You can try to create a factory configuration.
OSGi provides a way to configure services and modify those configurations on the run-time. But apart from this there is a another powerful feature that OSGi provides that is : ability to create Factory Configurations. Factory Configurations is a way to create a single service, and bind multiple configurations to it & then consume those configurations from different classes/Services.
Check [1] for more details.
[1] https://www.tothenew.com/blog/creating-osgi-factory-configurations-in-aem/#
https://helpx.adobe.com/experience-manager/6-3/sites/deploying/using/configuring-osgi.html
Views
Replies
Total Likes
You can try to create a factory configuration.
OSGi provides a way to configure services and modify those configurations on the run-time. But apart from this there is a another powerful feature that OSGi provides that is : ability to create Factory Configurations. Factory Configurations is a way to create a single service, and bind multiple configurations to it & then consume those configurations from different classes/Services.
Check [1] for more details.
[1] https://www.tothenew.com/blog/creating-osgi-factory-configurations-in-aem/#
https://helpx.adobe.com/experience-manager/6-3/sites/deploying/using/configuring-osgi.html
Views
Replies
Total Likes
Views
Replies
Total Likes
In case you have multiple services which share the same configuration (for whatever reason), I don't think that service factories are the right solution. Because service factories solve the issue of the same service with multiple configurations. Your problem seems to be the other way 'round.
In your case you should create a proper abstraction (e.g. "Endpoint Connection"), which can be configured centrally. All the other services use this "Endpoint Connection" service and do something like "myEndPointConnection.executeCommand(myCommand)", just to give an example.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies