RE: how do I do something after a forward?

2002-05-03 Thread Nelson, Laird
-Original Message- From: Malcolm Dew-Jones [mailto:[EMAIL PROTECTED]] Want I want is conceptually the same as public final class myAction report extends Action { public ActionForward perform(...) { dbh = get_database_connection()

RE: how do I do something after a forward?

2002-05-03 Thread Chen, Dean (Zhun)
(mapping.findForward(success)); } } Dean Chen -Original Message- From: Nelson, Laird [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 3:15 PM To: 'Struts Users Mailing List' Subject: RE: how do I do something after a forward? -Original Message- From: Malcolm Dew-Jones [mailto

RE: how do I do something after a forward?

2002-05-03 Thread James Mitchell
You can also do this by sub classing all your actions from a base action of some sort. This would allow for better code reuse. BaseAction.java import org.blah.blah.blah.Something abstract public class BaseAction extends Action{ ... ... abstract public ActionForward