Tauren
Tauren

Reputation: 27235

How to use object oriented programming with Hibernate?

While using ORM tools such as Hibernate, I've found it is advantageous to keep all business logic out of my business objects and instead keep it in a service layer. The service layer creates the business object POJOs, manipulates them, and uses DAOs to save them. But isn't this in a way taking a step backwards from the object oriented nature of Java?

My stack includes Spring with Hibernate for DI, transactions, and persistence. My DAOs are injected into my service layer, not into any POJOs.

Recently I read Martin Fowler's accounting patterns document on building flexible accounting systems. I believe it was written before the Spring/Hibernate/DI/ORM craze. It describes objects that contain business logic. These objects use inheritance and composition in elegant ways that make sense.

By putting the logic into classes, it can be partitioned into neat units that only pertain to one specific scenario. In my service layer I end up having lots of different methods, each which deals with a different scenario. But it is far from object oriented.

In Martin Fowler's accounting patterns document, he describes a base class of AccountingEvent. This class might have subclasses such as UsageEvent and InstallationEvent.

UsageEvent:

InstallationEvent:

The point is that there are many different types of AccountingEvents and PostingRules, each of which knows precisely what to do for a specific situation. These objects are easily interchangeable using interfaces. I can kick of everything by simply issuing the command someAccountingEvent.process().

I'm unclear on the best way to get some of this elegance back when I have to create and save entities within the service layer. I don't want to inject my DAOs into my POJOs, which would add extra dependencies to them and potentially make them much heavier weight objects. But how would I best model something like this in my service layer where I can inject DAOs?

Upvotes: 13

Views: 2891

Answers (2)

ptomli
ptomli

Reputation: 11818

You might be talking about what's referred to as an "Anemic domain model". I have previously answered a question on the topic which points to a blog article about how to inject services into model instances which Hibernate it retrieving.

Spring and the Anemic Domain Model

The referenced blog article is Domain Driven Design with Spring and Hibernate

Upvotes: 4

Adriaan Koster
Adriaan Koster

Reputation: 16209

Valid question, and I don't know the solution. One thought though: Object-oriented design is not the goal, it is a means to an end. If it's easiest to have an anaemic domain model within your architecture, then maybe you should use it; swimming against the flow of your frameworks will usually make things a lot harder. That said, it is always healthy to strive for elegant, more object-oriented solutions where possible. In this case, after reading James Blewitt's blog about the subject, there might be some viable new approaches.

Upvotes: 2

Related Questions