Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realize that persistence frameworks such as Morphia and Hibernate rely on annotations on domain objects to do their magic. At some level, it seems to me that this is inserting persistence concerns into the domain layer which is something we're supposed to strive to avoid.

Is this something that I should try to dodge by perhaps using an external configuration file or maybe separate DTOs from the domain model? Or is this little leak between the persistence and domain layers generally regarded as acceptable?

share|improve this question
See this presentation infoq.com/presentations/Clean-Model-Tim-McCarthy – MikeSW Apr 11 '12 at 5:41
Thanks, this looks to be a great presenation! Watching now... – HolySamosa Apr 11 '12 at 16:34

3 Answers

up vote 5 down vote accepted

In my latest iteration on an existing system using Spring and Hibernate, I have started to move in a similar matter. When first implementing Hibernate models, I strove to separate the application logic in service classes from the persistence logic via data access objects. When building a new system last year I allowed most of the persistence objects to serve as the domain objects because that was the expedient solution.

However, I am redesigning this same system in light of changing business requirements, and I'm again leaning towards separating those concerns. I'm only a few days into the new design, but already I find myself preferring to have one object that represents the in-memory concerns object while a separate persistence-based object is used to store its state changes to the database. For example, I have a Lead for persistence and a parallel ActiveLead that lives across transactions.

I'm not yet convinced this is the best method, but it makes sense on a gut level. I've longed to have a collection of persistence-agnostic--nay, persistence-ignorant--set of objects that remain memory-resident across database transactions without regard to the standard CRUD simplifications. Yet I understand that in the end all database operations are implemented as CRUD. The two worlds must collide, and the trick is in making them dance in harmony.

Hibernate annotations on domain objects? This is a fine compromise between ease of implementation vs. ease of maintenance in my view.

share|improve this answer
2  
This also gives you the opportunity to be more strict/less strict as to the state of your persistence objects vs the in-memory ones. I try to be extremely cognizant of inputs and outputs from an interface and separating these concerns in this manner allows for that. – alexwen Apr 11 '12 at 6:06

I've recently worked on a reasonably complex system with had a separate persistence layer, and it was a huge pain in the ass and very bad for maintainability. You're basically looking at a conflict between the principles of YAGNI and Single Responsibility. In my opinion, YAGNI is the more important one (alas, also the more frequently ignored one).

I'd say in the vast majority of cases, it's much better to persist domain objects directly if you're using an ORM, unless you have concrete requirements that force the persistence entities to be structured differently (if they have exactly the same structure, there is no reason to separate them except ivory tower arguments).

To be sure: always do the actual persistence stuff (calling ORM functions) in a separate service/DAO layer! That way, it's easy to introduce a persistence layer later if you find that you need it.

share|improve this answer
1  
One case where I run into trouble with using the same object is optimistic locking from multiple threads/servers. If you try to save a change to firstName for example, and find that someone else has changed the object, you need to reload the object to make the change. How do you insert the newly-loaded-and-modified object back into the tree of domain objects? – David Harkness Apr 11 '12 at 9:17

In my opinion there's no need to duplicate the domain objects to be able to seperate them from your persistance layer. It works duplicate code in hand and it's perfectly doable by using those same objects as DTO's. If necessary you can always use seperate classes if it's needed, but I wouldn't make it a rule of thumb, it 'll cost you time and we all know time is valuable.

share|improve this answer
2  
I disagree. The domain objects are by their nature different from that persistence model objects, they have different purposes. If sometimes the domain is not really much of a domin and the persistence entities can be used directly, that a simple coincidence, an implementation detail. The idea is that you start modelling the domain, ignoring the persistence all together. Recently I blogged about exactly this situation sapiensworks.com/blog/post/2012/04/07/… – MikeSW Apr 11 '12 at 5:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.