I am new to diving in the OSGi world. I am trying to develop an application with the following modules (packs):
- model
- api services
- Default Services
- Web
Assume that the default service package contains internal data access services. Therefore, some configuration to access the database. Itβs not good for me to place the database configuration in the default service package. In addition, the website does not need to know how the service is connected to the internal network by default.
My question is: does OSGi have a configuration kit concept? My idea was to deploy the default configuration package. Is there a similar solution for this?
source share