Hi Martin, I did not paste the cdibean produer code. {code:title=CDIBeanProducer added to the above comments . java|borderStyle=solid} public class CDIBeanProducer { Thanks @Inject private BeanManager manager; @Produces public CDIBean produce(InjectionPoint ip){ if(ip == null){ throw new RuntimeException("InjectionPoint is NULL when producing CDIBean"); } return new CDIBean(manager); } } {code}
|