public interface BeanPostLoad
Fired after a bean is fetched and loaded from the database.
Note that if want to totally change the finding, you need to use a BeanQueryAdapter rather than using postLoad().
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isRegisterFor
(Class<?> cls) Return true if this BeanPostLoad instance should be registered for post load on this entity type.void
Called after every each bean is loaded from the database.
-
Method Details
-
isRegisterFor
Return true if this BeanPostLoad instance should be registered for post load on this entity type. -
postLoad
Called after every each bean is loaded from the database. You can implement this to derive some information to set to the bean.
-