Hi. I'm new to struts (I've been working on my first struts webapp
for the past few days), but I have a design question to ask:
Why is there a separate validation call to an ActionForm? Isn't the
normal JavaBeans PropertyVetoException model cleaner and easier to
maintain?
I may well be missing the point. Is there some design pattern in the
validate() method which doesn't make the programmer separate
validation from the property setter method, which is also compatible
with PropertyVetoException?
Thanks!