I would like to know what the generic term is for hibernate’s Entity classes to DDL (hbm2ddl) capability.
Is it Domain Driven Design or Model Driven Development or something else?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would say it certainly is not Domain-Driven Design. hbm2ddl can be used in conjunction with DDD but doesn’t have much to do with DDD principles. DDD is less focused on the persistence technology and more focused on the business domain.
MDD can be an arguable point. One could say this is part of MDD because the MDD idea is to use modeling artifacts in the code. Using domain model classes to generate the database schema can be seen as an example of MDD.