Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Struts

Status
Not open for further replies.

linusSanto

Programmer
Jul 31, 2003
15
IN
I am new to Struts

So can any one tell me in brief that compaired with the MVC pattern can all layers be handled with the struts ?

I mean what exactly Actionform and Action classes do?


 
I 've never used struts, but there is a seperate forum forum946 "Apache group: Jakarta Struts Forum"
 
ActionServlet is the backbone of the struts implementation.
It handles client requests. It then determines what Action class needs to be called.

Struts adheres to MVC standards. The servlet is the controller, and jsp pages are the views.

>can all layers be handled with the struts?
what do you mean by this? All logics that could be written in jsp pages can now be done in java. You call struts by referring to the tagnames. It thus eliminates the messy and unmaintanable jsp pages.

~za~
You can't bring back a dead thread!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top