Zins RockStar

Greenhorn
+ Follow
since Jan 03, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Zins RockStar

Christian Beil wrote: You might be interested in this: <HYPER-LINK INTENIONALLY DELETED>

I also asked this question on the JavaPosse Google Group: http://groups.google.com/group/javaposse/browse_thread/thread/7b66fdb48619f77d/e2ef70268eb1ae99?lnk=gst&q=package+feature#e2ef70268eb1ae99

NOTE: Please do not post links to the www.javapractices.com website.

Hello folks, I would like to seek advice for packaging question:

There are several items, let's say, 10 items. All of those got model and DAO classes, any comment on following packaging?

Should I try packaging like:
com.abc.item1.model.Item1Model
com.abc.item1.dao.Item1DAO
.
.
.
com.abc.item10.model.Item10Model
com.abc.item10.dao.Item10DAO

OR

com.abc.model.Item1Model
.
.
.
com.abc.model.Item10Model

com.abc.dao.Item1DAO
.
.
.
com.abc.dao.Item10DAO

?