Do you have any good tips on how should i organize class packages for my java project?
We are usually building web MVC projects and our structure is something like this
com.company.project.model.* - all model classes com.company.project.service.* - all service classes com.company.project.service.entity.* - service classes related to particular model class com.company.project.service.dao.* - dao classes
this seems somehow smelly tho...