@PostConstruct running *before* setters. Why?
I have a page fragment, with two ADF components that are bound to objects in a backing bean. In my @PostConstruct backing bean method, I need to access these objects. However, I initially received null pointer exceptions. I debugged the application, only to find that the setters for these backing bean bound objects are running after the @PostConstruct method. The things I've read online say that this is not what should be happening. Anyone have any ideas?
Thanks