Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've read on Wikipedia and other sites about OSGi, but I don't really see the big picture. It says that it's a component based platform, and that you can reload modules at runtime. Also the "practical example" given everywhere is the Eclipse Plugin Framework.

My questions are:

  1. What is the clear and simple definition of OSGi?

  2. What common problems does it solve?

By "common problems" I mean problems we face everyday, like "What can OSGi do for making our jobs more efficient/fun/simple?"

share|improve this question

11 Answers

I don't care too much about the hotplugability of OSGi modules (at least currently). It's more the enforced modularity. Not having millions of "public" classes available on the classpath at any time protects well from cyclomatic dependencies: You have to really think about your public interfaces - not just in terms of the java language construct "public", but in terms of your library/module: What (exactly) are the components, that you want to make available for others? What (exactly) are the interfaces (of other modules) you really need to implement your functionality?

It's nice, that hotplug comes with it, but I'd rather restart my usual applications than testing all combinations of hotplugability...

share|improve this answer
3  
You can achieve the same using Guice and packages, exporting only interfaces and Modules and marking everything else package-private – Pablo Fernandez Feb 4 '10 at 23:13

I've found the following benefits from OSGi:

  • Each plugin is a versioned artifact that has its own classloader.
  • Each plugin depends on both specific jars that it contains and also other specific versioned plug-ins.
  • Because of the versioning and isolated classloaders, different versions of the same artifact can be loaded at the same time. If one component of your application relies on one version of a plug-in and another depends on another version, they both can be loaded at the same time.

With this, you can structure your application as a set of versioned plugin artifacts that are loaded on demand. Each plugin is a standalone component. Just as Maven helps you structure your build so it is repeatable and defined by a set of specific versions of artifacts it is created by, OSGi helps you do this at runtime.

share|improve this answer
3  
One of the biggest benefits of this strong versioning mechanism is that dependencies are verified during deployment, meaning that you get unresolved dependency errors at deployment time instead of NoClassDefFoundErrors at run time. Aside from the module system, the OSGi service layer does deserve mention. It's not as easy to start with because it impacts your architecture (and it's not always appropriate to use it), but it's a very powerful system once you have adopted it. – Barend May 31 '09 at 11:47

I just wrote a blog post attempting to describe why OSGi is useful. I'd definitely be interested in your feedback.

http://rcpquickstart.com/2009/05/04/why-is-osgi-important/

share|improve this answer
I commented on your post – Pablo Fernandez May 5 '09 at 19:09
1  
This is very clear and simple, and actually convinced me there is benefit when I was originally thinking there was none for my purposes. Adding (requiring?!) encapsulation at a higher level is not obvious in any of the OSGi docs that I've read, but seems like the most significant benefit. – Zac Thompson Jul 24 '09 at 19:31

Jar hell, for instance.

share|improve this answer
8  
Except that OSGi didn't solve Jar hell. Just search Google for "ClassNotFoundException OSGi" or "NoClassDefFoundError OSGi". – Rogério Mar 4 '11 at 18:40
1  
ohh yeah. I got plenty of those when I started working with osgi – santiagozky Jan 19 '12 at 21:14
1  
Then you should ask the question why the ClassNotFoundExceptions rise n OSGi? Because OSGi seperates classes and Classloader from different bundles (jars) and only allows crossreferces when explicitly exported and imported! The CNFE is just a symtom of a bigger problem: poor modularity in the loaded jars. Neil Bartelett has a couple of good articles on OSGi and Class loading, i.g. this one – benjamin Nov 27 '12 at 16:57
  • You can, analogically speaking, change the motor of your car without turning off it.
  • You can customize complex systems for the customers. See the power of Eclipse.
  • You can reuse entire components. Better than just objects.
  • You use a stable platform to develop component based Applications. The benefits of this are huge.
  • You can build Components with the black box concept. Other components don't need to know about hidden interfaces, them see just the published interfaces.
  • You can use in the same system several equal components, but in different releases, without compromise the application. OSGi solves the Jar Hell problem.
  • With OSGi you develop thinking to architect systems with CBD

There are a lot of benefits (I reminded just these now), available for everyone who uses Java.

share|improve this answer

edited for clarity. OSGi page gave a better simple answer than mine

A simple answer: An OSGi Service Platform provides a standardized, component-oriented computing environment for cooperating networked services. This architecture significantly reduces the overall complexity of building, maintaining and deploying applications. The OSGi Service Platform provides the functions to change the composition dynamically on the device of a variety of networks, without requiring a restarts.

In a single application structure, say the Eclipse IDE, it's not a big deal to restart when you install a new plugin. Using the OSGi implementation completely, you should be able to add plugins at runtime, get the new functionality, but not have to restart eclipse at all.

Again, not a big deal for every day, small application use.

But, when you start to look at multi-computer, distributed application frameworks, that's where it starts to get interesting. When you have to have 100% uptime for critical systems, the capability to hotswap components or add new functionality at runtime is useful. Granted, there are capabilities for doing this now for the most part, but OSGi is trying to bundle everything into a nice little framework with common interfaces.

Does OSGi solve common problems, I'm not sure about that. I mean, it can, but the overhead may not be worth it for simpler problems. But it's something to consider when you are starting to deal with larger, networked, applications.

share|improve this answer
Are you saying that OSGi provides an inter-JVM mechanism for service discovery in a distributed environment? My own question (stackoverflow.com/questions/375725/…) has been answered as if OSGi is single-VM – oxbow_lakes Dec 18 '08 at 15:26
What do you mean by "networks" in "change the composition dynamically on the device of a variety of networks"? – Thilo Jan 8 '09 at 0:47

At the very least, OSGi makes you THINK about modularity, code reuse, versioning and in general the plumbing of a project.

share|improve this answer

I have also just blogged about OSGi (from a pure beginner's point of view - I was as confused as you were!)

Check out http://seewah.blogspot.com/2009/05/osgi-next-big-thing-beginners-view.html

IMHO, hotswappability of modules is great, but the killer feature for me is the ability to eliminate jar hell.

share|improve this answer

I think the following blog post from Hal Hildebrand answers part of the question quite nicely. My latest incoherent ramblings on (one of) the value propositions of OSGi

share|improve this answer

It is also being used to bring additional portability of middleware and applications on the mobile side. Mobile side is available for WinMo, Symbian, Android for example. As soon as integration with device features occurs, can get fragmented.

share|improve this answer

A Few Things that drive me nuts on OSGi:

1) The implentations and their context loaders have a lot of quirks to them, and can be somewhat async (We use felix inside of confluence). Compared to a pure spring (no DM) where [main] is pretty much running through everything sync.

2)Classes are not equal after a hot load. Say, for instance you have a tangosol cache layer on hibernate. It is filled with Fork.class, outside of the OSGi scope. You hotload a new jar, and Fork has not changed. Class[Fork] != Class[Fork]. It also appears during serialization, for the same underlying causes.

3)Clustering.

You can work around these things, but it is a major major pain, and makes your architecture look flawed.

And to those of you advertising the hotplugging.. OSGi's #1 Client? Eclipse. What does Eclipse do after loading the bundle?

It restarts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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