vinod
Joined: 25 Apr 2006 Posts: 725
|
Posted: Fri May 05, 2006 10:12 am Post subject: Stepping through Jakarta Struts |
|
|
What is Struts?
Struts, from the Jakarta Project, is a development framework for Java servlet applications based upon the Model-View-Controller (MVC) design paradigm. The purpose of this article is to give you a quick intro to Struts, covering the necessary details to make it possible to build a simple one-page example containing an HTML form. Then I'll refine this example to show you additional features of Struts.
Struts is comprised of a controller servlet, beans and other Java classes, configuration files, and tag libraries. This means that when you have downloaded Struts (and I'll come back to how this is done) you have available:-1.A controller for your application (the Struts servlet acts as a common controller for the whole application) 2.A collection of Java beans and other helper classes that you use in the "Model" part of your application 3.A collection of tag libraries used in your jsp-pages
To See more information:
http://javaboutique.internet.com/tutorials/Struts/ |
|