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

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top