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?
@ApplicationScopedand@Singletonat its section 5.4 (p. 36). – brandizzi Jul 3 '11 at 18:50