what are best strategies to group classes in packages e.g. all managers in one package, all dao in another, would you recommend a different approach?
Any good strategies?
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.
Classes with same functionality should be put in a samepackage with the package name that justify their functionality and use.
For Example:
Should contains all the service interface
Should contains all the service implementation classes
Should contains all the utility classes.
From standard API
See