Re: Abstract producer method cause UnsatisfiedResolutionException

2013-05-28 Thread Reinis Vicups
Thank you for the hints. Alas, am still struggling with realization of template method. I tried different approaches now and am unable to find the clean implementation for my problem. Ok thats my problem and not a CDI issue, but just for the sake of completeness I'd like to show the solution

Re: Abstract producer method cause UnsatisfiedResolutionException

2013-05-27 Thread John D. Ament
The answer's in the spec (JSR-299) A producer method must be a non-abstract method of a managed bean class or session bean class. Your abstract class is neither a managed bean nor a session bean. I also confirmed that your project doesn't run with weld. On Mon, May 27, 2013 at 9:57 AM, Reinis