Hubert, your input is quite valuable. But I just wonder this suppose to be
handled by Struts itsself,

You may also place a bean instance on your form, and use nested property
references. For example, you might have a "customer" bean on your
ActionForm, and then refer to the property
"customer.name<http://customer.name>"
in your presentation page. This would correspond to the methods
customer.getName() and customer.setName(String Name) on your customer bean.
See the Apache Struts Taglib Developer Guides for more about using the
nested syntax.
http://struts.apache.org/struts-core/userGuide/building_controller.html#action_form_classes

Do you know whether this BeanDef works with Validator?

Thanks.

On 11/3/05, Hubert Rabago <[EMAIL PROTECTED]> wrote:
>
> [ Oh, I missed my cue! :) ]
>
> If your form bean maps to a business object (and it sounds like it
> does since you're using BeanUtils), you can try FormDef:
> http://formdef.dev.java.net/
>
> You won't need to create a separate ActionForm class or manually
> define your DynaActionForm, FormDef will configure it for you. You
> can also specify how you want your fields formatted, including dates
> and numbers, and use FormDef's conversion methods in place of
> BeanUtils.
>
> Hubert
>
> On 10/31/05, Yujun Liang <[EMAIL PROTECTED]> wrote:
> > Laurie,
> >
> > Thanks for all the replies.
> >
> > Can you point me to a document describe how to change the default
> converter
> > used by Struts? I was not aware of that. By the way, what's the
> disadvantage
> > to have common beanutil to support java.util.Date as well?
> >
> > Thanks
> >
> > On 10/30/05, Laurie Harper <[EMAIL PROTECTED]> wrote:
> > >
> > > Right, I create a fresh instance of BeanUtilsBean and register the
> > > converter at the point of use, to avoid that being a problem.
> > >
> > > L.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Yujun Liang
[EMAIL PROTECTED]

Reply via email to