I\'ve a session scoped bean:
@Named @SessionScoped public class SessionBean implements Serializable { private String someProperty; public String ge
BalusC's reply is correct, but is does reflect the assignment phase of a object creation, that did not run at this time. But anyway the CDI bean should be accessible if you grep it programatically via:
CDI
grep
javax.enterprise.inject.spi.CDI.current().select(SessionBean.class).get()