On 1/5/06, Tamas Szabo <[EMAIL PROTECTED]> wrote: > > > > > I'm actually quite happy with what Struts has to offer except for the > > deal with having to use ActionForms. I'd really like a Struts-like > > framework but allows me to use POJOs to capture my data and provides a > > nice way to redisplay that data back to the user if validation fails (ie > > a POJO that backs a form with a Data datatype will display back the > > String they entered). > > > You can bind request parameters to POJOs using Spring. > And you can use the SpringBindingActionForm to redisplay the data to the > user.
What happens on invalid input in this scenario? For example, when you bind a parameter to an integer field, and then type "1a3" instead of "123" into the field. The user would expect "1a3" to be redisplayed. Craig Tamas > >