Re: LazyDynaBean question

2005-02-09 Thread Niall Pemberton
Yes BeanValidatorForm is just a DynaBean wrapper - it can wrap either other DynaBean or POJO beans. FormBeanConfig has become the ActionForm factory (since Struts 1.2) which makes it straight forward to plug in your own mechanism by overriding the createActionForm() method. You can get it to

RE: LazyDynaBean question

2005-02-09 Thread Joe Hertz
Users Mailing List Subject: Re: LazyDynaBean question Yes BeanValidatorForm is just a DynaBean wrapper - it can wrap either other DynaBean or POJO beans. FormBeanConfig has become the ActionForm factory (since Struts 1.2) which makes it straight forward to plug in your own mechanism

RE: LazyDynaBean question

2005-02-09 Thread Joe Hertz
Users Mailing List Subject: Re: LazyDynaBean question Yes BeanValidatorForm is just a DynaBean wrapper - it can wrap either other DynaBean or POJO beans. FormBeanConfig has become the ActionForm factory (since Struts 1.2) which makes it straight forward to plug in your own mechanism

Re: LazyDynaBean question

2005-02-09 Thread Niall Pemberton
Now I'm just confused. sorry. Niall - Original Message - From: Joe Hertz [EMAIL PROTECTED] To: 'Struts Users Mailing List' user@struts.apache.org Sent: Wednesday, February 09, 2005 7:15 PM Subject: RE: LazyDynaBean question But I still have to implement my own ActionForm class

RE: LazyDynaBean question

2005-02-08 Thread Joe Hertz
: Monday, February 07, 2005 1:01 PM To: Struts Users Mailing List Subject: Re: LazyDynaBean question If you wanted to have Struts use different flavours of BeanValidatorForm to wrap objects then you would have to create your own custom FormBeanConfig implementation and override

RE: LazyDynaBean question

2005-02-08 Thread Joe Hertz
: Monday, February 07, 2005 1:01 PM To: Struts Users Mailing List Subject: Re: LazyDynaBean question If you wanted to have Struts use different flavours of BeanValidatorForm to wrap objects then you would have to create your own custom FormBeanConfig implementation and override

Re: LazyDynaBean question

2005-02-07 Thread Niall Pemberton
If you wanted to have Struts use different flavours of BeanValidatorForm to wrap objects then you would have to create your own custom FormBeanConfig implementation and override the createActionForm() method. Then you need to configure struts to use the custom FormBeanConfig and put in place a

RE: LazyDynaBean question

2005-02-07 Thread Joe Hertz
: LazyDynaBean question If you wanted to have Struts use different flavours of BeanValidatorForm to wrap objects then you would have to create your own custom FormBeanConfig implementation and override the createActionForm() method. Then you need to configure struts to use the custom