Tagged Questions
The OSGi framework is a module system and service platform for the Java programming language that implements a complete and dynamic component model.
53
votes
10answers
3k views
What does OSGi solve?
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 ...
36
votes
17answers
10k views
What OSGi Container Do You Recommend?
For the purposes of building a service framework that works quietly behind the scenes in the JVM, logically separated from whatever the primary application running is, it seems like OSGi really lends ...
20
votes
8answers
3k views
What's the best way to get started with OSGI?
What makes a module/service/bit of application functionality a particularly good candidate for an OSGi module?
I'm interested in using OSGi in my applications. We're a Java shop and we use Spring ...
18
votes
3answers
5k views
Java plugin framework choice
We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in".
After reading a number of posts ...
17
votes
5answers
543 views
Why is Sun inventing another module system when everyone has standardised on OSGi?
Sun is putting a lot of effort behind modularising the JDK in the form of Jigsaw, and insinuating that it should be the module format of choice for other Java developers as well. The only notable ...
17
votes
4answers
5k views
Reading my own Jar's Manifest
I need to read the Manifest file, which delivered my class, but when I use:
getClass().getClassLoader().getResources(...)
I get the MANIFEST from the first .jar loaded into the Java Runtime.
My app ...
15
votes
4answers
530 views
Can OSGi help reduce complexity?
I saw lots of presentations on OSGi and i think it sounds promising for enforcing better modularization. Apparently "hotdeployment" and "running different versions of x in parallel" are mayor selling ...
15
votes
1answer
3k views
OSGi: What are the differences between Apache Felix and Apache Karaf?
Apache Karaf is a sub project of Apache Felix. It is defined as "a lightweight OSGi container".
I don't understand when should I use the heavyweight and when to use the lightweight. Their site ...
14
votes
5answers
3k views
How to modularize a JSF/Facelets/Spring application with OSGi?
I'm working with very large JSF/Facelets applications which use Spring for DI/bean management.
My applications have modular structure and I'm currently looking for approaches to standardize the ...
14
votes
5answers
1k views
Mini-OSGi that can run in a sandbox (like AppEngine or WebStart)?
I really like the concept of modular bundles as implemented by OSGi.
I also like "managed deployment" services like Google AppEngine (for web application) or Java WebStart (for client software).
...
13
votes
2answers
4k views
Is MEF OSGi for .NET?
I'm just trying to get my head around the Managed Extensibility Framework (MEF) at the moment and digging into a bit. I have an Eclipse background so in my brain I currently have the equation:
MEF ...
12
votes
4answers
7k views
Embedding JARs into the OSGi bundle with maven-bundle-plugin
I’m trying to embed some JARs into single OSGi bundle using the feature of maven-bundle-plugin
The thing that worries me is that all packages of embedded JARs are put into the Import-Package header ...
11
votes
4answers
363 views
Has anyone found OSGi to be useful in corporate applications?
The title says it all; has anyone deployed a corporate application in OSGi and found it useful?
I can see the benefits, forced modularity, good dependency definitions etc. But these seem to be mainly ...
11
votes
2answers
2k views
How to deploy OSGi apps and dependencies?
OSGi seems to have an excellent benefit of having small deployable artifacts by not wrapping dozens of JAR dependencies into a lib directory. However, I can't find anything that tells me an easy, ...
11
votes
5answers
1k views
Implementing dynamic plugins in Java
I'd like to implement a dynamic plugin feature in a Java application. Ideally:
The application would define an interface Plugin with a method like getCapabilities().
A plugin would be a JAR ...
11
votes
3answers
2k views
Is the resolution problem in OSGi NP-Complete?
The resolution problem is described in the modularity chapter of the OSGi R4 core specification. It's a constraint satisfaction problem and certainly a challenging problem to solve efficiently, i.e. ...
11
votes
3answers
1k views
OSGi: Does Blueprint replace Declarative Services?
The new R4.2 spec for OSGi describes the Blueprint service, for dependency injection and service wiring.
Does Blueprint replace Declarative Services (which is still part of the spec, as well),
or are ...
10
votes
5answers
1k views
Glassfish as an OSGi Container
I'm evaluating OSGi containers and the subject came up of using Glassfish to contain my OSGi application components. My question is: Is Glassfish good for this? Does anybody have any experience using ...
10
votes
2answers
1k views
Trouble understanding the whole OSGi web eco system
I am pretty new to the whole Java and OSGi world and I have trouble understanding the eco system of a OSGi web application.
To be more precise I am at the moment trying to understand how all the ...
10
votes
4answers
767 views
OSGi - How mature is this technology?
I have a requirement where I need to share some web resources (jsp, html, js, images, css etc.) across different Spring based Struts 2 applications. And seems like OSGi can be used to achieve this?
...
10
votes
4answers
1k views
What's new in OSGi 4.2?
OSGi 4.2 has just been released which updates the 4.1 specification with a few new RFCs. So, what's particularly new with OSGi 4.2, which frameworks support 4.2 already (or are close to) and why ...
10
votes
4answers
11k views
Why can't JAXB find my jaxb.index when running inside Apache Felix?
It's right there, in the package that it should be indexing. Still, when I call
JAXBContext jc = JAXBContext.newInstance("my.package.name");
I get a JAXBException saying that
"my.package.name" ...
9
votes
4answers
1k views
Scala in OSGI container?
How can I code my bundle in Scala and then deploy it into OSGI container?
Do I compile it into "java" first or can i deploy scala straight into OSGI and use some kind of bundles to recognize it?
Any ...
9
votes
2answers
1k views
Best practices for Eclipse Feature Integration Testing
I am developing an Eclipse feature consisting of several Eclipse plugins, using Equinox Declarative Services (DS) to wire the plugins together at runtime. I would like to add integration tests to ...
9
votes
2answers
8k views
Logging in Eclipse/OSGi plugins
I am starting to develop an Eclipse plugin (technically, an OSGi plugin) and one of the first problems I've run into is that I can't seem to control the commons-logging output as I normally would.
...
8
votes
2answers
207 views
OSGi memory management
I have theoretical question about OSGi memory management.
Let’s say we have some OSGi container (Felix for instance), and let’s suppose I created some bundle with memory leak.
And here are some ...
8
votes
1answer
3k views
Web Application using OSGi and GWT
Which is a good architecture for a Web Application using OSGI and GWT as UI?
The aim is to use bundles to make bundles of web interface sections. If I add new bundle it will add new features (a menu ...
8
votes
3answers
947 views
What is the relationship between OSGi and Dependency Injection
What are they of each other?
Specification and implementation?
Competitors?
Unrelated?
8
votes
2answers
1k views
Status of the OSGi Deployment Admin Service
OSGi applications are composed of modules called bundles. The problem is that any reasonably sized application will have a large number of bundles (could easily be hundreds, just look at the plugins ...
8
votes
3answers
5k views
Maven : OSGI, bundles and multi-modules projects
I'm currently developing an OSGi based application (using Equinox) by trying to mavenize a web tutorial I've found on OSGi+Equinox. In this project, there are bundles depending on other bundles ...
7
votes
2answers
148 views
Importing resources from OSGi bundle
With the import mechanism in OSGi, it is straightforward to import packages from another bundle. However, I have been unsuccessful in importing resources that exist in the "root" of the bundle.
Is it ...
7
votes
3answers
406 views
Using an OSGi Bundle from a Java Web Application in Tomcat
I am trying to invoke a method of an OSGi bundle from a Java Web Application. Both are supposed to run on Tomcat 7.
I already wrote a normal Java application that invokes methods from the OSGi ...
7
votes
2answers
274 views
What is OSGi and what are some examples of its use?
I've just started hearing the term OSGi being used (while reading tutorials on common JEE containers such as GlassFish and Spring), however I have been unable to find a simple, straight-forward, ...
7
votes
3answers
330 views
Launching OSGi from IDEA
I develop scala application using IntelliJ IDEA. I'd like my application modules to be OSGi bundles.
In Eclipse it is possible to create a project which is both scala project and plug-in project. ...
7
votes
3answers
2k views
Java 6 - Annotation processor and code addition
I wrote a custom annotation containing metadata for a property and an AnnotationProcessor:
@SupportedAnnotationTypes({"<package>.Property"})
public class PropertyProcessor extends ...
7
votes
2answers
426 views
What's the difference between OSGI bundles and components?
getting started with osgi, i wonder what's the conceptual diffence between bundles and components. And when to use which of them. Any pointers are welcome.
EDIT:
Components and Bundles provide ...
7
votes
2answers
883 views
When to use ServiceLoader over something like OSGi
Being someone who is allergic to dependencies, when would I use something like OSGi instead of the built in java 6 http://java.sun.com/javase/6/docs/api/java/util/ServiceLoader.html (I want to let ...
7
votes
2answers
2k views
Existing implementations of OSGi Configuration Admin Service?
We are considering to use Configuration Admin Service as a primary API for configuring components in our OSGi-based application. It would be nice if we could reuse some existing implementation so I'm ...
7
votes
5answers
2k views
How to run an OSGi framework within usual java-code?
Can anybody give me an example how to use the osgi framework classes? I haven't a clue how to use those classes ...
BR,
Markus
7
votes
7answers
2k views
How to write eclipse rcp applications with scala?
The Scala Eclipse plugin page says:
* Support for Eclipse plugin and OSGi development including hyperlinking to Scala source from plugin.xml and manifest files.
How does this support work? There's no ...
7
votes
9answers
5k views
How can I manage OSGi build dependencies?
We've embedded an OSGi runtime (Equinox) into out custom client-server application to facilitate plugin development and so far things are going great. We've been using Eclipse to build plugins due to ...
6
votes
2answers
92 views
Getting the scala compiler to work inside an OSGi runtime
I am using a Scala template engine (Scalate) to compile templates at runtime within an OSGi environment (Scala 2.9.1). The templates cannot be pre-compiled because they are built dynamically.
In ...
6
votes
1answer
245 views
OSGi + JPA(postgresql)
I tried to use JPA in OSGi and faced with this exception:
javax.persistence.PersistenceException: No Persistence provider for EntityManager named test
There are simple entity class, file ...
6
votes
1answer
94 views
what is wrong with the current way of developing/packaing/distributing a (large) java (web) application? [closed]
There are lots of applications are moving towards osgi. And there are lots of material on the internet talk about benefits of using OSGi. But I fail to see the problems the current way of ...
6
votes
0answers
380 views
Using Spring Security on a JAX-RS bundle in Karaf
I have an OSGi bundle that uses JAX-RS to handle some REST services. This bundle is running in Karaf with Apache CXF. I need to apply basic http authentication to certain path/method combinations. ...
6
votes
2answers
224 views
Looking for Guice-to-OSGi guiding principles, experience, tips, etc
Guice is a great framework to separate API from implementation and to start modularizing your applications. OSGi is a great framework to load versioned services in their own secured environment and to ...
6
votes
3answers
2k views
Programatically Start OSGi (Equinox)?
I'd like to be able to easily start an OSGi framework (preferably Equinox) and load up any bundles listed in my pom from a java main.
Is this possible? If so, how?
It seems like the pax tools would ...
6
votes
4answers
532 views
Recommended book for OSGi
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 ...
6
votes
1answer
116 views
Is there an easy way to use an OSGi bundle in a classpath for Ant junit or java tasks?
I have a bunch of OSGi bundles that are basically jars that contain other jars and a manifest.
bundle xyz.jar:
somejar1.jar
somejar2.jar
Manifest
I want to run some junit tests, and need ...
6
votes
1answer
1k views
OSGI runtime inside traditional J2EE server
I understand it should probably be other way round (OSGI runtime hosting J2EE servers), as it is apparently already possible with glassfish.
However, our clients have extensive experience in ...