I want to access multiple instances singletonA and singletonB of a no-interface Singleton MySingleton. The instances are first defined in another Singleton Configurator class:
MySingleton.java
@Singleton
@LocalBean
public class MySingleton {
...
}
Configurator.java
@Singleton
@Startup
@LocalBean
public class Configurator {
@EJB MySingleton singletonA;
@EJB MySingleton singletonB;
}
The code above, appearently works.
Now, I need to inject these 2 instances of MySingleton in a Message-Driven Bean:
MDB.class
@Stateless
public class MDB implements MessageListener {
@EJB (lookup="?") MySingleton singletonA;
@EJB (mappedName="??") MySingleton singletonB;
}
But at this point I am completely lost. I know that I could make things simpler by defining the 2 instances as 2 (empty) implementations of a unique interface. But I have some problems because the class contains some non static fields, so I can't define it as an Interface.
EDIT
Because of the nature of MDB, I can't pass the Singletons by reference. Finally, I would like to avoid creating two identical implementations of MySingleton.
Thanks to the answers received I have been rethinking at the whole architecture and I must agree on the fact that having MySingleton defined as Stateful would be fine as well.