I apologize if this is a duplicate, but I couldn't find any concrete examples on the topic in related questions.

After reading Martin Fowler's article on the 'Anemic Domain Model', I'm left wandering as to why is this considered an anti-pattern. Even does the majority of enterprise developers consider it an anti-pattern, since AFAIK probably 90% of the j2ee applications are designed in an 'anemic' way ?

Can someone recommend further reading on the topic (other than the 'Domain Driven Design' book), or even better, give a concrete examples on how this anti-pattern is affecting application design in a bad way.

Thanks,

link|improve this question

1  
I saw this very interesting post by a fellow SO user, which is worth a read: techblog.bozho.net/?p=180. – planetjones Jun 9 '11 at 14:48
@planetjones I have read that and its indeed interesting, its one of the reasons I'm asking this question. Thanks. – Simeon Jun 9 '11 at 15:03
feedback

4 Answers

up vote 4 down vote accepted

Given the following two classes:

class CalculatorBean  
{  
    //getters and setters  
}  

class CalculatorBeanService  
{  
   Number calculate(Number first, Number second);  
    {  
       //do calculation  
    }  
} 

If I understand correctly, Fowler is stating that because your CalculatorBean is just a bunch of getters/setters you don't gain any real value from it and if you port that object to another system it will do nothing. The problem seems that your CalculatorBeanService contains everything that the CalculatorBean should be responsible for. Which is not the best as now the CalculatorBean delegates all of its responsibility to the CalculatorBeanService

link|improve this answer
+1 that is exactly Martins argument, it gets even more valuabe when you write a Singel User Desktop Application (and not a DB driven enterprise application) – Angel O'Sphere Jun 9 '11 at 14:19
yes this seems very understandable. However doesn't the idea of having logic and data in a single class violate the separation-of-concerns pricipal ? en.wikipedia.org/wiki/Separation_of_concerns – Simeon Jun 9 '11 at 14:22
1  
@Simeon: Not really. Separation of concerns means an object is responsible for just one thing. Models should still be designed this way. Its just that 'anemic domain models' are responsible for nothing at all. – Kevin Jun 9 '11 at 14:27
1  
@Simeon: Obviously there's some amount of judgement and art involved. The point is ultimately to have code that is easy to read and maintain. To give you a counterpoint: I have a model object called "Job" that happens to be persisted to some store. When I get it out of the store it should be possible to run it. Should that be in a service object or should job simply expose a method run()? I think it's more natural to say job.run() than it is to say jobRunnerService.runJob(job). – Kevin Jun 9 '11 at 14:50
1  
@Simeon In big-O it isn't the best case scenario that counts its the worst. While it isn't the same as a pattern perse it does show how something that is good in one place is bad in another. – Woot4Moo Jun 9 '11 at 15:45
show 20 more comments
feedback

Martin Fowler brings this industry many words and less understanding.

Majority of applications today (web/db) do need many objects that expose their properties.

Any authority (self claimed) frowning upon such practice should lead by example, and show us a successful real world application that's full of embodiments of his marvelous principles.

Or else shut up. It is sickening that there so many hot airs in our industry. This is engineering, not a drama club.

link|improve this answer
3  
I'd give this +1000 voteups if I could. This is exactly my view. If you criticize something give examples :) This is also exactly the reason why I'm asking the question. – Simeon Jun 9 '11 at 15:33
1  
This should probably be a comment – Woot4Moo Jun 9 '11 at 15:46
1  
@Woot4Moo an answer stating, there are no examples is a valid opinion IMO. – Simeon Jun 9 '11 at 19:49
1  
@Simeon I was purely commenting that the answer would have been better served as a comment because it adds nothing to the discussion beyond someone's opinion. – Woot4Moo Jun 9 '11 at 20:39
@irreputable, if you treat it liek you do, then it is not engineering but mere craftmansship or even only work. – Angel O'Sphere Sep 28 '11 at 15:26
feedback

Well. You're right that almost all java code is written this way. The reason it's an anti pattern is that one of the main principles of object oriented design is to combine data and the functions that operate on it into a single object. For example when I was writing old school c code, we would mimic object oriented design like this:

struct SomeStruct {
    int x;
    float y;
};

void some_op_i(SomeStruct* s, int x) {
    // do something
}
void some_op_f(SomeStruct* s, float y) {
    // something else
}

Which is to say that the language didn't allow us to combine the functions to operate on SomeStruct inside of the struct, so we created a group of free functions that by convention took SomeStruct as a first param.

When c++ came along, the struct became a class, and it allows you to put functions into the struct (class). Then the struct is implicitly passed as the this pointer, so instead of creating a struct and passing it to functions, you create the class and call methods against it. The code is more clear and easier to understand this way.

Then I moved to the java world, and everyone separates the model from the service, which is to say the model is a glorified struct, and the service, being stateless as it is, becomes a collection of functions that operates on a model. Which to me, sounds suspiciously like a c language idiom. It's pretty funny because in c it was done because the language didn't offer anything better, and in java it's done because the programmers don't know any better.

link|improve this answer
interesting comparison :) I'll think about this a little bit. – Simeon Jun 9 '11 at 14:29
feedback

As with most things in the software development world there is not black and white. There are cases where an anemic domain model is the perfect fit.

BUT there are a lot of cases where developers try to build a domain model, aka do DDD, and end up with an anemic domain mode instead. I think in this case the anemic domain model is considered an anti-patern.

Just make sure you use the best tool for the job and if it works for you don't bother changing it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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