Hello!
Working with Spring and Hibernate I want Hibernate not to use the Default-Constructor when instantiating persisted classes.
Is it possible to tell hibernate to use some Factory-Method to instantiate an Object instead of the default-Constructor?
So in this Factory-Method I could call the spring-Factory.
The reason for my thinking is that objects not instantiated by spring-factory cannot use SpringAOP.
http://forum.springframework.org/showthread.php?p=125286#post125286
Thank you for your help in advance.
Jockel