I'm starting to develop with java (jsp). And I would like to know the correct structure of working (only with "pure" java).
It would be this:
model (Classes with get and set) dao (classes that extends the connection class) (for each class of the model package I have a DAO that accesses the database)
Do I need another package to have business rules? or should I implement it in the model?