This content has been marked as final.
Show 2 replies
-
1. Re: What is the alternative to the WeldContainer.instance-method?
mkouba Jun 8, 2017 6:07 AM (in response to christoph.tornau)Hi Christoph,
WeldContainer
now implementsInstance
, so you can just invoke the lookup methods upon theWeldContainer
instance:Test t = container.select(Test.class).get();
-
2. Re: What is the alternative to the WeldContainer.instance-method?
christoph.tornau Jun 8, 2017 6:32 AM (in response to mkouba)Uups, thank you for your answer. It's so simple. I accidentally overlooked this. Thank you for helping me!