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:

  1. A really good book on OSGi.

  2. Resources for OSGi. May be some expert blog or similar forum link where I can see what people had done using OSGi.

  3. 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

link|improve this question

On a discussion thread here stackoverflow.com/questions/126073/modular-web-apps modular webapps with OSGi is discussed. – Nishant Dec 6 '10 at 8:42
feedback

5 Answers

up vote 8 down vote accepted

Here is how I "learned" OSGi:

I needed to build an Eclipse plugin. When I started work on it I kept reading, seeing, etc about "OSGi". However, when I went to lookup "what it actually does" I was even more confused. So I began to "play with it". I hand built a couple of the examples that came with the Eclipse for RCP\PDE developers version and sorta got the jist of what it does. When the services part of it really struck me I got my company to send me to Eclipse\OSGi Dev Con a couple years ago (I highly recommend this to anyone doing any work with OSGi, Eclipse users, PDE & RCP developers). This conference helped ALOT!

When I got back I read "Modular Java: Creating Flexible Applications with OSGi and Spring" as well. I'd heard about the PAX tools at the conference but had no idea what people were talking about as I'd never played with it. Additionally, I started to hear about BND and the Felix Maven plugin (important point, BND is a fundamental tool that you may want to learn more about). I love that book, but I agree with your sentiment - it is not really for beginners.

We're now exploring Apache Servicemix with Progress Fuse & Apache Camel - Servicemix is OSGi based. I've been lucky enough to already know a little about OSGi, but others on my team are sorta in the same boat you are in and I was in: interested, but struggling to understand what this technology is and what it does, etc, etc.

Unfortunately I have not read any good intro books, though these 2 look like they may have some promising intro content (though both are Spring-DM focused):

My suggestion would be to use the example code that comes with the Eclipse RCP\PDE setup to get the feel of what basic, stand-alone OSGi is\does and then move on to "higher levels" and additional tools. This is what did the trick for me.

I hope this helps - and good luck.

EDIT #1: On the topic of wrapping:
I've found that not all projects are on board with OSGi yet. As a result, unfortunately, we have to use BND to wrap jars more often than we'd like. The felix maven plugin helps with this, but it is still somewhat "dirty". This skill of knowing what to export, import and embed does seem to come with time but there are also tools like OBR which are set to improve these types of problems if I understand them correctly. In fact, it is a common notion that one of the key points of contention on OSGi right now is the limits of it's tooling and evangelism of it's knowledge base.

I think that when you deal with stuff (of your own or third party) you tend to have to use the splatter shot "import all" approach, but as you start to develop REAL bundles you have more control and cognition of what you're doing and why.

link|improve this answer
Thank you for sharing your experience. It's really useful. Apart from unavailibity of right resources. I wanted to ask you, as an OSGi developer, don't you have to manually wrap or embed a lot of Jars? I feel like a lot of things in the Walls' book, the author just happened to know by experience. Like ommitting optional dependency for Compass and adding OSGi logging api/service, when there was no error but nothing was working either. Do you find such scenario frequently? – Nishant Dec 6 '10 at 7:57
First: I wouldn't admit to be a wholly dedicated OSGi developer...yet :) I'll address your question via an edit. – javamonkey79 Dec 6 '10 at 19:46
feedback

Fortunately, as of now there is a good bunch of OSGi books out there. I will briefly review them here, in order of my personal preference:

  1. OSGi and Equinox: while specifically tailored to Equinox, it represents the best crash-course on OSGi to date; it is particularly useful if you plan to use Eclipse, too; all in all, it gives you a pretty generic practical understanding of OSGi;
  2. OSGi in Action: this is the most detailed book, where you really get the hang of (almost) every little nook and cranny of the base specification (and some Enterprise specification too); it is the book you keep on your desk when you need some raw programmatic power, but I would not recommend it as a first book on OSGi;
  3. OSGi and Apache Felix 3.0: not so bad, but rather shallow. It is mostly irrelevant given that OSGi in Action uses Felix too. Could be a replacement for OSGi and Equinox as an introductory book, if you do not fashion Equinox at all;
  4. OSGi in Depth: I only read some excerpts here and there from MEAP, but it seems a pretty decent book for some border cases, most likely complementing OSGi in Action;
  5. Enterprise OSGi in Action: again, I read what is currently available from MEAP, which is very little at the moment; the TOC suggests it is interesting, but never an introductory book for sure;
  6. Spring Dynamic Modules in Action: essentially covers the original implementation of the Blueprint specification, which is rather specific; I haven't read it yet, but sure it gives a more detailed view compared to what you can find in OSGi in Action;
  7. Modular Java: this is an "old" book in terms of the evolution of OSGi and I would not recommend it over any of the previous.

I think I will update this answer as soon as new stuff surfaces.

link|improve this answer
feedback

"OSGi and Equinox" is a good book for learning OSGi that provides an excellent example named "toast".

link|improve this answer
Thanks. I would try to look into this book's sample chapters on Amazon. One of the criteria of choosing the book was to be able to know how to incorporate OSGi in web-app development. I would like to know if this book gives some orientation in that direction? – Nishant Dec 6 '10 at 8:29
1  
@Nishant, of course it covers that. You could freely download the 'toast' example from the eclipse.org then play with it that is open source and contributed as an example of eclipse. – Kane Dec 6 '10 at 9:09
Great. Thank you Kane, it's good to know. I will try it. – Nishant Dec 6 '10 at 16:53
feedback

OSGi has its merits, but as I understand it you will quickly end up in quite a bit of work which is not justified unless your application is highly complex.

I would, however, suggest you look at the Dependency Injection available in Java EE 6, which buys you the "glue" between modules and allowing drop-in module functionality, and the WAR/EAR archive give you the simple deployment strategy. The mature implementation right now is GlassFish v3, but other Java EE 6 implementations is soonish available.

link|improve this answer
I am looking forward to a lean solution. OSGi theoratically seems very lean and awesome by description. But as I am starting to write code, I am realizing that I may end up a messy workspace. I will certainly look into JEE6's DI. As far as complexity is concerned, I wanted to make a webapp where I have a base application. And then a lot of "plugins", like say reporting plugin that creates reports and stats. Now, my client may not want the plugin at all, or he may want the existing plugin or he may want a customized plugin. I want this to do just by throwing in Jar without probably touching WAR – Nishant Dec 6 '10 at 8:11
@Nishant, we do this with CDI. – Thorbjørn Ravn Andersen Dec 6 '10 at 8:32
@ Thorbjørn Ravn Andersen - can you pls point me to the articles on how to create plug-in kind of functionality using CDI – Pangea Dec 30 '10 at 17:13
@Pangera, I did research on how to do this with Spring, CDI and Guice earlier this year. I have not seen an article describing it. I might write one. – Thorbjørn Ravn Andersen Dec 30 '10 at 19:37
feedback

OSGi Service Platform Core Specification The OSGi Alliance It is specification by OSGi, the best book i found.

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.