Re: Actions forwarding to actions

2005-07-26 Thread Liming Xu
You can also add RequestProcessor as controllers. - Original Message - From: [EMAIL PROTECTED] To: Struts Users Mailing List Cc: Struts Users Mailing List Sent: Tuesday, July 26, 2005 1:40 PM Subject: Re: Actions forwarding to actions Not always. An Action should be

Re: Actions forwarding to actions

2005-07-26 Thread BHansard
Not always. An Action should be created to perform a specific control instance. For Example, if you are going to insert a record, the Action class has all the required code to insert the record. However, as you get into more complex systems, you will often find that you are duplicating a lot of

Re: Actions forwarding to actions

2005-07-26 Thread Jeff Beal
See http://wiki.apache.org/struts/ActionChaining?highlight=%28actionchaining%29 On 7/26/05, Lance Semmens <[EMAIL PROTECTED]> wrote: > I'm a newbie to struts and I'm maintaining what I consider to be > spaghetti code. > There actions which forward to other actions and I'm getting lost a bit > lost