> So do you put your Servlets and JavaBeans in the same
> package or do you always keep them seperate?
If I write a servlet at all, it's in a separate package from the beans. Most of the time, I'm using the framework's servlet implementation and writing actions/controllers (separated from beans).
> And in your names do you put in the word servlet/bean to
> further help identify the object? (ie controllerServlet, customerBean)
No, but that's only by preference. I don't think there's a compelling reason not to.
~