Hi, I have a question about ApplicationScoped CDI beans with constructor injection. My bean has two constructors: one default without parameters and one with @Inject. If I inject this bean in another one, only the default constructor is executed (I've put some logging messages in both constructors). The injection constructor is not executed, so the field is null. How can that be? What am I doing wrong?
(BTW: I'm using openwebbeans 1.1.8 in TomEE 1.5.2) Thanks, Martin
