Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0.0
-
Component/s: DSL for Business Domain
-
Labels:None
-
Number of attachments :
Description
Currently in the data-src/main/java all the files are placed in the *.dao package. This includes the interfaces (*Dao.java) and implementations (*DaoImpl.java).
Most projects I've worked on have those files in a different package, maybe:
*.dao
All the *Dao.java files
*.dao.impl
All the *DaoImpl.java files
IMHO this would make it a bit more clear and easy to use.
Interfaces are generated in <rootPackage>.data, and implementations in <rootPackage>.data.spring.hibernate.