vote up 4 vote down star
1

What is the differences and similarities between Domain Specific Languages (DSL) and Domain Driven Design (DDD)?

flag

6 Answers

vote up 6 vote down check

Domain Driven Design (DDD) is a way of thinking and communicating about the problems and its solutions.

Domain Specific Language (DSL) is a way of writing code.

They're similar because they both start with the word "domain". That's it, I guess. :-)

link|flag
vote up 0 vote down

I would argue that they are somehow related and not only by the word "domain". Once you have a good (domain-driven) design, it will surely help in creating a solid DSL.

"DDD does not specifically require the use of a DSL, though it could be used to help define a DSL." - Wikipedia

link|flag
vote up 0 vote down

Wikipedia has a pretty clear definition for DSL:

The term domain-specific language (DSL) has become popular in recent years in software development to indicate a programming language or specification language dedicated to a particular problem domain, a particular problem representation technique, and/or a particular solution technique.

This can be implemented as a set of classes following some consistent pattern, some fancy C++ template magic, or a compiler/parser that interprets free text input to do what you want.

link|flag
vote up 0 vote down

I think they are somehow related (as Christophe put it), but two totally different aspects. I wouldn't even dismiss jop's statement.

For very well written information on DSLs refer to Martin Fowler's set of pages on DSLs (work in progress), you may start with the example, or the definition. Another good read is his QandA.

DDD is based on the domain model and usually at least one abstraction level higher than the DSL. Both can exist without the other, and as Christophe already said, they can both be used in the same project.

link|flag
vote up 3 vote down

Domain-Driven Design emphasizes the role of the problem domain as you create the fundamental vocabulary, concepts, and object model for the system being designed.

A Domain-Specific Language is a notation for specifying or implementing specific parts of the system, oriented to the needs of the practitioner in that domain (i.e. minimizing the "programmerese" aspects of most programming or specification languages).

link|flag
vote up 0 vote down

The differences, one is an approach to building systems using a Domain Specific Language language (DSL) instead of a General Purpose Language and the other is an architectural approach (DDD) to designing and building systems.

The similarity is that they both focus on the specific domain.

link|flag

Your Answer

Get an OpenID
or

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