What Does OSGi Solve? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:35:49Z http://stackoverflow.com/feeds/question/106222 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106222/what-does-osgi-solve 20 What Does OSGi Solve? Pablo Fernandez 2008-09-19T22:45:49Z 2009-10-20T16:18:14Z <p>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.</p> <p>My questions are:</p> <p>1) What is the CLEAR and SIMPLE definition of OSGi?</p> <p>2) What COMMON PROBLEMS does it solve?</p> <p>By "common problems" I mean problems we face everyday, like "what can OSGi do for making our jobs more efficient/fun/simple"</p> <p>Thanks.</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/106263#106263 2 Answer by scubabbl for What Does OSGi Solve? scubabbl 2008-09-19T22:55:47Z 2008-09-19T22:55:47Z <p><em>edited for clarity. OSGi page gave a better simple answer than mine</em></p> <p>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.</p> <p>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.</p> <p>Again, not a big deal for every day, small application use.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/106287#106287 5 Answer by Fabian Steeg for What Does OSGi Solve? Fabian Steeg 2008-09-19T23:04:11Z 2008-09-19T23:04:11Z <p><a href="http://en.wikipedia.org/wiki/Java_Classloader#JAR_hell" rel="nofollow">Jar hell</a>, <a href="http://www.osgi.org/About/WhyOSGi" rel="nofollow">for instance</a>.</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/106333#106333 10 Answer by Travis B. Hartwell for What Does OSGi Solve? Travis B. Hartwell 2008-09-19T23:16:33Z 2008-09-19T23:16:33Z <p>I've found the following benefits from OSGi:</p> <ul> <li>Each plugin is a versioned artifact that has its own classloader.</li> <li>Each plugin depends on both specific jars that it contains and also other specific versioned plug-ins.</li> <li>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.</li> </ul> <p>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. </p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/108693#108693 11 Answer by Olaf for What Does OSGi Solve? Olaf 2008-09-20T16:43:45Z 2008-09-20T16:43:45Z <p>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?</p> <p>It's nice, that hotplug comes with it, but I'd rather restart my usual applications than testing all combinations of hotplugability... </p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/808938#808938 1 Answer by for What Does OSGi Solve? 2009-04-30T20:38:21Z 2009-04-30T20:38:21Z <p>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.</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/822977#822977 3 Answer by Patrick Paulin for What Does OSGi Solve? Patrick Paulin 2009-05-05T02:01:32Z 2009-05-05T02:01:32Z <p>I just wrote a blog post attempting to describe why OSGi is useful. I'd definitely be interested in your feedback.</p> <p><a href="http://rcpquickstart.com/2009/05/04/why-is-osgi-important/" rel="nofollow">http://rcpquickstart.com/2009/05/04/why-is-osgi-important/</a></p> <p>--- Patrick </p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/858012#858012 1 Answer by unknown (google) for What Does OSGi Solve? unknown (google) 2009-05-13T13:42:03Z 2009-05-13T13:42:03Z <p>I have also just blogged about OSGi (from a pure beginner's point of view - I was as confused as you were!)</p> <p>Check out <a href="http://seewah.blogspot.com/2009/05/osgi-next-big-thing-beginners-view.html" rel="nofollow">http://seewah.blogspot.com/2009/05/osgi-next-big-thing-beginners-view.html</a></p> <p>IMHO, hotswappability of modules is great, but the killer feature for me is the ability to eliminate jar hell.</p> <p>Thanks!</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/1587536#1587536 -1 Answer by Markus Jevring for What Does OSGi Solve? Markus Jevring 2009-10-19T08:31:21Z 2009-10-19T08:31:21Z <p>I'd upvote Patrick's link: <a href="http://rcpquickstart.com/2009/05/04/why-is-osgi-important/" rel="nofollow">http://rcpquickstart.com/2009/05/04/why-is-osgi-important/</a> if I had the rep.<br> It does a great job of describing OSGi</p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/1595798#1595798 1 Answer by Mirko Jahn for What Does OSGi Solve? Mirko Jahn 2009-10-20T16:18:14Z 2009-10-20T16:18:14Z <p>I think the following blog post from Hal Hildebrand answers part of the question quite nicely. <a href="http://www.tensegrity.hellblazer.com/2009/10/all-we-need-to-do-is-take-these-lies-and-make-them-true-somehow.html" rel="nofollow">My latest incoherent ramblings on (one of) the value propositions of OSGi</a></p>