Here is how I arrived to this question. I wasn't really looking for OSGi, but I was reseaching for a technology that I can incorporate in my next Java based web developement project, so that I can avoid monolithic block of Java code. Instead, I can just have plug and play modules. Like: I can change search modules, and it's just a matter of putting a new Jar. or I can hand over my client a less featured web-app at a lower price and then as he demands I can just go plug in extra features that he wants without actually sort of replacing the war file that was deployed earlier. Or may be someone can just add a plugin to the system.
In my research, I landed on OSGi... and description-wise, it seemed to me that it can just serve my purpose. The specs looked simple and good for my plug and play webapp modules.
So, I have got myself a book named: "Modular Java: Creating Flexible Applications with OSGi and Spring" by Craig Walls. While this is a good introductory book. It depends heavily on pax. Plus, while doing the examples -- pax logger 1.5.3 created some issue and I could not find a resource on the web. Looked like, if Pax kept on breaking, I will be helpless because I do not know what going on behind Pax. The book does not have a section on how to get going with an IDE, but that's a minor issue.
Now, at this stage I am basically looking for three things:
A really good book on OSGi.
Resources for OSGi. May be some expert blog or similar forum link where I can see what people had done using OSGi.
Since I haven't really started on the project. I can switch to other technology that serves my purpose better. You may suggest a technology that serves my purpose better than OSGi.
Thanks
Nishant