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.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Declarative Services (DS) are not deprecated, they are in fact the cleanest way of handling service binding/unbinding in OSGi. You could do it manually, and this may be better depending on your use-cases, but generally DS are good. SpringDM uses Equinox underneath, but they have wrapped it for you to make certain things more Springy. I've never tried SpringDM so can't comment much.

If you are planning on using/integrating Spring in the future, start with SpringDM. Otherwise, start with DS. If you ever need to do something DS cannot handle, you can do it manually with service trackers. It is acceptable to mix DS and manual service handling.

I think you have a fourth option called "Blueprint" which was proposed as an alternative to DS sometime in the last 2 years. I don't know where they got to, but I think SpringDM might be using this internally.

link|improve this answer
I second that, we use DS extensively in Apache Sling and they work well for us. Apache Felix's maven-scr-plugin and ANT tasks (felix.apache.org/site/apache-felix-maven-scr-plugin.html) simplify service declaration and wiring using Java annotations. – Bertrand Delacretaz Jul 13 '11 at 7:48
Spring-DM, which was donated to Eclipse as Gemini Blueprint, is the reference implementation of the Blueprint specification, which is documented in the OSGi Service Platform Release 4 Version 4.2 Enterprise Specification, section 121. Roughly speaking, Blueprint and Spring-DM are different names for the same thing; however, development has stopped on Spring-DM and continues with Eclipse. – Richard Steele Jul 14 '11 at 13:54
I agree, Declarative Services is certainly not deprecated, in fact it continues to be developed and there will be new features in the next OSGi specification release. Blueprint is a newer alternative but but necessarily better, just different. – Neil Bartlett Jul 20 '11 at 14:56
feedback

In addition to @omerkudat advices, you can also take a look at iPOJO which is more advanced than DS, but it is not part of the official specification.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.