hi
i would like to know if there is a web site who list good pratice for spring 3.0?
i started a program, i splitted it with a controller, service and dao layer but i have some question about form objet used in the
jsp...
i create a UserForm who is used in a jsp, this object look like
i don't know if a good pratice to put all theses information in a object.. or it's better to put all combobox value in a separate object...
example to feed listbox, there are some possibility... call many dao method in the service layer and feed a UserForm object...
or create one methode by list at the service layer and in the controller call all these method..
maybe it's better to create a object only for the listbox... use it a the service layer and controller layer...
at the controller layer, the choice will impact on the @ModelAttribute methode... one for the UserForm or one for every list or one for hypothetical listbox content object...
some basic question, but i prefer the good pratice now than later...
thanks