| Author |
calling a action class method from JSP in struts
|
trupti nigam
Ranch Hand
Joined: Jun 21, 2001
Posts: 602
|
|
Hello all,, In struts how do I call a method in the action class from the JSP? Thanks, trupti
|
 |
David Hibbs
Ranch Hand
Joined: Dec 19, 2002
Posts: 374
|
|
|
You don't. You assemble a form or hyperlink to the action and invoke it via an HTTP POST or GET operation. PLEASE do not try to invoke a method in an action class directly from a JSP! This ties your view directly to your controller, and suddenly you might as well not be using MVC at all!
|
"Write beautiful code; then profile that beautiful code and make little bits of it uglier but faster." --The JavaPerformanceTuning.com team, Newsletter 039.
|
 |
 |
|
|
subject: calling a action class method from JSP in struts
|
|
|