if someone could explain to me what exactly Serializable does, i would appreciate it...
public class UserView implements java.io.Serializable {
i imagine it has something to do with scaling your application... UserView is a presentation JavaBean with the usual get/set methods... basically UserView is a DTO to transfer data from one layer of my application to another, implementing the MVC model 2 approach to web application programming.
thanks in advance for your help...
btw, what do you guys think of using Hibernate as an ORM? i seem to hear nothing but good things about it...
public class UserView implements java.io.Serializable {
i imagine it has something to do with scaling your application... UserView is a presentation JavaBean with the usual get/set methods... basically UserView is a DTO to transfer data from one layer of my application to another, implementing the MVC model 2 approach to web application programming.
thanks in advance for your help...
btw, what do you guys think of using Hibernate as an ORM? i seem to hear nothing but good things about it...