In CDI there is @ApplicationScoped and @Singleton pseudo-scope. What is the difference between them? Besides that @ApplicationScoped is proxied, and @Singleton is not.

Can I just change my @Singleton bean to @ApplicationScoped? Can @ApplicationScoped bean have two (or more) instances?

link|improve this question

56% accept rate
1  
Have you read the Weld reference? There is some explanation about the practical differences between @ApplicationScoped and @Singleton at its section 5.4 (p. 36). – brandizzi Jul 3 '11 at 18:50
feedback

2 Answers

@Singleton is not part of the CDI specification. It is part of EJB and javax.inject (JSR-330). It is not mentioned in the spec what is its behaviour, so you can only rely on what's written in the Weld documentation.

link|improve this answer
That's not true. There is annotation javax.inject.Singleton. It is part of CDI. Check here: docs.jboss.org/weld/reference/1.0.1-Final/en-US/html_single/… – amorfis Dec 30 '10 at 20:35
@amorphis - I have the CDI spec in front of me. I have even implemented parts of it, and it does not mention anything about @Singleton. It is shown in only one example, without clarifications. It is true that CDI relies on javax.inject, but strictly speaking it is not part of the CDI spec. That said, I corrected my answer a bit. – Bozho Dec 30 '10 at 20:37
@amorfis so, although I'm aware the answer is not quite helpful (by not providing differences), I believe you can at least remove the downvote, since it is technically correct :) – Bozho Dec 30 '10 at 20:47
feedback

@Singleton in 299 refers to Singleton session beans (javax.ejb.Singleton, not javax.inject.SIngleton), not 299 managed beans in a built-in scope called Singleton.

You might find in your server that @ApplicationScoped is one-per EAR or one-per WAR/EJB-JAR as it is not clear in the specification, but you should definitely not expect it to be one per JVM.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.