In a managed bean, @PostConstruct is called after the regular Java object constructor.
Why would I use @PostConstruct to initialize by bean, instead of the regular constructor itself?
|
In a managed bean, Why would I use
| |||
|
feedback
|
| ||||
|
feedback
|
|
If your class performs all of its initialization in the constructor, then However, if your class has its dependencies injected using setter methods, then the class's constructor cannot fully initialize the object, and sometimes some initialization needs to be performed after all the setter methods have been called, hence the use case of | |||
|
feedback
|
|
Also constructor based initialisation will not work as intended whenever some kind of proxying or remoting is involved. The ct will get called whenever an EJB gets deserialized, and whenever a new proxy gets created for it... | |||
|
feedback
|