My bean implements InitializingBean and in the afterPropertiesSet method I want to perform validation.
The thing is that my validation uses some other bean which are not totaly finished loaded at this point, beans like JPA beans..
I used also @PostConstruct annotation - this is even worse since this method invoke before the afterPropertiesSet method.. Any suggestion how to solve this issue ?