PostConstruct callbacks occur after any dependency injection has been performed by the container and before the first business method invocation on the bean.[/QUOTE
Now if I have an annotation in my session bean that calls another session bean, then do my PostConstruct callback occurs after the another session bean reference is resolved?
SCJP 1.4, SCWCD 1.4 - Hints for you, Certified Scrum Master
Did a rm -R / to find out that I lost my entire Linux installation!
If you are referring to EJB injection, yes, it's true. But you cannot access those EJBs during PostConstruct method, because there is no transaction/security context.
Originally posted by Mirko Bonasorte: If you are referring to EJB injection, yes, it's true. But you cannot access those EJBs during PostConstruct method, because there is no transaction/security context.
I did not get your second line?
SCJP 1.4, SCWCD 1.4 - Hints for you, Certified Scrum Master
Did a rm -R / to find out that I lost my entire Linux installation!