Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Include Page
apache-felix-ipojo-header
apache-felix-ipojo-header

HTML
<div class="content">

Using a factory method to create POJO object

By default, iPOJO calls the POJO constructor to create objects. This constructor can either has no argument or receive the bundle context. However sometimes, you may want a more sophisticated object creation policy.

iPOJO allows you describing a factory method called to create POJO objects instead of the constructor. So, every time that iPOJO needs to create an instance of your POJO class, this method will be called to obtain the object.

To use this feature you need to add the factory-method attribute in the Component element as illustrated below:

Code Block
xml
xml
<component
	className="org.apache.felix.ipojo.test.scenarios.component.FooProvider"
        factory-method="createProvider"
>
	...
</component>

The specified method must be a static method of the implementation class returning an instance of this implementation class. The following code shows an example of usage:

Code Block
    public static FooProvider createProvider() {
        if (singleton == null) {
            singleton = new FooProvider();
        }
        return singleton;
    }

This method must then call any valid constructor (potentially private) of the implementation class.

However, be aware that if you create an instance by using a factory-method, the called constructor hasn't access to values injected by the iPOJO container. So, the called constructor must not try accessing to services, properties... These objects will be accessible when the constructor returns.

As for "normal" constructor, the method-factory can receive the bundle context in argument, such as in:

Code Block
    public static FooProvider createProvider (BundleContext bc) {
        if (singleton == null) {
            singleton = new FooProvider(bc);
        }
        return singleton;
    }



Include Page
apache-felix-ipojo-footer
apache-felix-ipojo-footer