Want to have a bean separate from the action and just reference it?
Define your bean (whatever you want) and just declare it as a variable
on your action.
Nothing more.
Add getter and setter.

class MyAction ... {
  private MyBeanClass myBean;

}

in your JSP just prefix bean components with the bean name;

 <s:textfield name="myBean.title" ... />

That's all :)

Dariusz Wojtas


On 1/7/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
I just took a look at the tutorials of Struts 2 today. As a Struts 1 user, I
don't like form beans that mostly copy your business data beans. In Struts 2,
you don't need form beans anymore, but the tutorial states that you have to
implement an execute() method into your business bean. Actually, what I would
prefer is an Action class, that just references the form bean, i.e., I can use
my business bean unchanged but only have to link them to an action. Is this
possible in Struts 2 and how do I achieve this? Further, is are there any
plans/release dates for a book on Struts 2?

Cheers,

Thorsten

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

Reply via email to