I've implemented a singleton in java (EE6) on geronimo. The class is annotated @Singleton and @Startup. Geronimo creates the singleton on startup, but it appears that the singleton is being constructed for each @EJB annotation and reference to the singleton.
The pattern/implementation is taken directly from the geronimo singleton sample which is behaving the same way: each @EJB results in a call to the constructor of the singleton.
While the system is working, this doesn't seem right. Can anyone shed some light on why the singleton's constructor would be called after startup?
Anthony