In my project i use weld se. I have a problem injecting "GroupedExchangeAggregationStrategy" into one of my constructors. This object has a default no argument constructor. Beans.xml is set to discover "all". But i get unsatisfied dependency for type GroupedExchangeAggregationStrategy
.
Do i need to create a producer to just return new GroupedExchangeAggregationStrategy()
? Or what else could cause the problem?
(The project already uses many @Produces
and qualifiers. So the cdi stuff works in general.)