I am starting a project with OSGi and I am facing a very important choice while defining the way I will handle service registration etc...
If I am not mistaken, I have three choices :
- Use manual solution by implementing service listeners and handling my own registers (maybe not the worst choice actually)
- Use the Declarative Service paradigm : Seems good but I have the feeling that it's now a bit deprecated. Am I right ?
- Use the Spring DM paradigm : It seems to be the latest paradigm but I am not sure it is well-standardized yet. Do I need a special OSGi implementation to run it (like Virgo/SpringDM Server ?) or can I use my classic OSGi platform as soon as it contains the plugins
org.springframework.*?
Do you have any comments or information about my interrogations ? Have you a preferred choice (and why ?) or do you use an other solution not included in my list ?
Thanks very much in advance.