Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.