--- Syed Ibrahim <[EMAIL PROTECTED]> wrote:
> Instead of writing the getter and setters in Action
> I would prefer then to be written separately as the 
> same bean can  be used elsewhere in models or
> DAO transfer objects. 
> 
> How to achieve that in Struts 2 ?

Write your POJO, expose it in your action per JavaBean
spec, and use it in your form? Pseudo:

class Action Foo {
    private User user; // Plus getter and setter.
}

<s:form.../>
  <s:textfield name="user.fname".../>
</...>

d.



 
____________________________________________________________________________________
Get your own web address.  
Have a HUGE year through Yahoo! Small Business.
http://smallbusiness.yahoo.com/domains/?p=BESTDEAL

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to