Calling a different method instead in 'execute' in Struts 1.2
Posted
by Veera
on Stack Overflow
See other posts from Stack Overflow
or by Veera
Published on 2010-05-31T12:16:01Z
Indexed on
2010/05/31
19:53 UTC
Read the original article
Hit count: 201
In struts 1.2, when an URL in the form http://foo.com/barAction.do is invoked, this will call the execute
method (or process
) in the action class that was mapped to barAction.
Is it possible to call a different method other than the execute
(or process
) in the same action class when the above URL is invoked?
© Stack Overflow or respective owner