Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How to share a configuration across multiple bundles in AEM6.4

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

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

View solution in original post

4 Replies

Avatar

Correct answer by
Employee Advisor

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

Avatar

Employee Advisor

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.

Avatar

Level 2
Yes, you are right. I did realize this problem after digging into configuration factory.