More Efficient to Create New Bean or Use Existing Ones
I have two beans, lets say HomeBean and OfficeBean which are related to each other by a user_id which comes from a database.
When users do a search for something I want only parts from each bean like HomeBean.city and OfficeBean.city and a few other fields from each.
I'm wondering if it is more effiecient to create a new bean, such as SearchResultBean which contains only the information that I need, or is it better to use the beans I already have? I'm pretty sure the J2EE blueprints would not agree with me making new beans, but I don't want to load all that extra information from the database when I'm not going to show it to the user.
Thanks in advance!

