Question

I have a simple question and I hope I can find answer here! Can we mix hibernate model and DAO in same class? Is there a design Pattern which specify this?

Thank you

Was it helpful?

Solution

I think you're referring to ActiveRecord pattern, there the model class has methods to save(), get(), etc. This pattern is implemented in frameworks like Django and Ruby n' Rails. Hibernate uses Data mapper pattern instead.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top