For all of my forms I have an appropriate DynaValidatorForm bean defined in my struts-config file. This form eventually populates a bean (Data Transfer Object) that corresponds to the form bean but with the correct data types (ie java.util.Date birthDate vs String birthDate ).
The question I have is when generating a List to display the beans is it really that bad to use the actual Data Transfer objects beans in the display (vs a List of the DynaFormBeans)? The reason I ask is it seems like a lot of overhead to convert a Collection of data transfer objects into a whole new collection of DynaFormBeans, especially if the List is quite large. The problem though is if you use the DTOs you have to code in those beans proper formats for displaying such things as Dates. How do others handle this situation? Thanks, -- Rick mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

