Re: [hibernate-dev] Regarding extended bean managers and the CDI spec

2019-07-15 Thread Yoann Rodiere
Hello, As far as I know, delaying the call to beanManagerInitialized even more is not a problem for ORM itself, it's just that you won't be able to use ORM (or at least some features of ORM) until it is called. So the only way I can see this being a problem is there is a need to rely on ORM on the

[hibernate-dev] Regarding extended bean managers and the CDI spec

2019-07-15 Thread Benjamin Confino
Hello Just a quick FYI for hibernate developers and anyone else who might be implementing extended bean managers. When I asked the mailing list for advice in implementing extended bean managers I was advised to call beanManagerInitialized during AfterBeanDiscovery if at all possible. However