Contexts and Dependency Injection (CDI): Java Platform, Enterprise Edition (Java EE) 5 brought dependency injection (DI) with Convention over Configuration to Enterprise JavaBeans (EJB) 3.0. Java EE 6 introduces the flexible and powerful @Inject dependency injection model (JSR-330 and JSR-299) in addition to the already existing @EJB annotation.
LoggerProducer.java is a class used to produce Loggers to be injected in CDI beans with: @Inject Logger LOG; Full …
java jakarta-ee thread-safety cdi ejb-3.1I'm trying to apply the constructor injection pattern to beans in my CDI application and am encountering the following error …
java jakarta-ee dependency-injection cdi weldI want to use the @ViewScoped - scope in my application for the backing beans of some web pages. Also …
scope cdi jboss-weldI'm trying to use CDI events in my backend services, on JBoss AS6 - ideally with maximum code reuse. I …
events cdi jboss-weldSpring has been a good framework for DI and AOP for Java developers. Now, there comes a standard specification for …
spring jakarta-ee dependency-injection aop cdiI'd like to inject a sessionscoped CDI bean into a stateless EJB. At access time of the EJB the correct …
jakarta-ee ejb cdi glassfish-4 weldIn our JavaEE6 project (EJB3, JSF2) on JBoss 7.1.1, it seems we have a memory leak with SeamFaces @ViewScoped. We made …
jsf-2 memory-leaks cdi seam3 view-scopeWhen trying to inject arguments into the constructor of a CDI bean (ApplicationScoped), I'm encountering the following issue: Caused by: …
java dependency-injection cdi weld