So I know during the reception of AfterDeploymentValidation, the container isn't fully bootstrapped. However, its valid to look up beans. I would therefore expect that CDI.current().select()... to work fine. However, at least in Weld it doesn't. This is because CDI.current() cannot figure out what container to use (it's not fully bootstrapped yet). So my question - is this a Weld issue, or a spec clarification?
John