I am wanting some advice on package naming when writing
Servlets and Beans. Should I package my servlets as
com.embeddedthought.ProjectName.Servlets
and dump all my servlets in there. Or should I use that naming scheme and then extend that on with packages defining functionallity of servlets like
com.embeddedthought.ProjectName.Servlets.Operations
And as far as Beans should it be followed the same way as
com.embeddedthought.ProjectName.Beans.....
And so on?
Just looking for some advice. I know there is no "rule" but I do know there is an industry standard and that is what I am looking for.
Thanks.