Using Glassfish 3.0.1 ... If I have a web application accessing EJBs in another application remotely, and the remote application containing the EJBs is redeployed, I get a javax.ejb.NoSuchEJBException
I\'m having a tough time understanding how the two interact and where the boundary between them lies. Do they overlap? Are there redundancies betw开发者_StackOverfloween them?
I\'m working on a large Java EE 6 application that is deployed on JBoss 6 Final. My current tasks involve using @Inject consistently instead of @EJB, but I\'m running into some problems on some types
In CDI there is the @ApplicationScoped and the (javax.inject) @Singleton pseudo-scope. What is the difference between them? Besides the fact that @ApplicationScoped is prox开发者_Go百科ied, and @Singl
I\'d like to use multiple instances of the same CDI Named bean in a JSF2 page. (Imagine I have a backing bean to access a contentmanager category, but I want to show multiple categories in the same JS
I\'m wondering if it is possible to observe a CDI event with multiple JSF 2.0 session scoped backing beans. I thought that I could push event/data to multiple sessions by observing the event.
I\'m facing a problem when using DI and interceptors in an JSF app. I have a backing bean that observes JSF events and performs some initial data lookup. In the JSF page the bean is registered as eve
I\'ve just started reading through Core JavaServer Faces, 3rd Ed. and they say this (emphasis mine): It is a historical accident that there are two separate mechanisms, CDI beans
I ha开发者_如何学Gove a CDI producer method which - depending on some conditions not relevant to this example - creates objects of different types:
Are Java EE 6 CDI events transactional? If I fire an event in a transaction开发者_StackOverflow, and subsequently roll back the transaction, are the effects of the Event listener rolled back as well?