History of Struts

By Ramanujam V. Viewed: 31745 times Emailed: 306 times Printed: 316 times Bookmark and Share



When Java servlets were first invented, many programmers quickly realized that they were a Good Thing. They were faster and more powerful that standard CGI, portable, and infinitely extensible.

But writing HTML to send to the browser in endless println() statements was tiresome and problematic. The answer to that was JavaServer Pages, which turned Servlet writing inside-out. Now developers could easily mix HTML with Java code, and have all the advantages of servlets. The sky was the limit!

Java web applications quickly became "JSP-centric". This in-and-of itself was not a Bad Thing, but it did little to resolve flow control issues and other problems endemic to web applications.

Clearly, another paradigm was needed ...

Many clever developers realized that JavaServer Pages AND servlets could be used together to deploy web applications. The servlets could help with the control-flow, and the JSPs could focus on the nasty business of writing HTML. In due course, using JSPs and servlets together became known as Model 2 (meaning, presumably, that using JSPs alone was Model 1).

Of course, there is nothing new under the Sun ... and many have been quick to point out that JSP's Model 2 follows the classic Model-View-Controller design pattern abstracted from the venerable Smalltalk MVC framework. Java Web developers now tend to use the terms Model 2 and MVC interchangeably. In this guide, we use the MVC paradigm to describe the framework architecture, which might be best termed a Model 2/MVC design.

The Apache Struts Project was launched in May 2000 by Craig R. McClanahan to provide a standard MVC framework to the Java community. In July 2001, version 1.0 was released, and IOHO, Java Model 2 development has never been quite the same.




Comments(0)


Be the first one to add a comment

Your name (required):


Your email(required, will not be shown to the public):


Your sites URL (optional):


Your comments:


Enter Code:
The Captcha image

Latest Tutorials

[2008-12-10]Configuring JDBC DataSources in Struts
[2008-12-09]Struts Classes
[2008-09-20]FAQ: Why was reload removed from Struts (since 1.1)?
[2008-09-20]FAQ: Why are my checkboxes not being set from ON to OFF?
[2008-09-20]Using JavaScript to submit a form in Struts
[2008-09-20]How to prepopulate a form in Struts
[2008-09-20]Simple example of using the requiredif Validator rule in Struts
[2008-09-20]Chaining actions in Struts
[2008-09-20]When is the best time to validate input in Struts
[2008-09-17]What is a Plug-in and how to use Java plug-ins with Struts?
[2008-08-13]7 Best Practices of Struts
[2007-10-12]Origin and Architecture of Struts
[2007-10-01]ActionErrors and ActionError in Struts
[2007-10-01]Tutorial on Struts Configuration File – struts-config.xml in Struts
[2007-10-01]Handling multiple buttons in HTML Form in Struts

More Latest News

Most Viewed Articles (in last 30 days)
Tutorial on Struts Configuration File – struts-config.xml in Struts
Struts 1 vs Struts 2
Creating the first application using Struts 2
Handling Duplicate Form Submissions in Struts
Handling multiple buttons in HTML Form in Struts
ActionErrors and ActionError in Struts
Editing struts-config.xml in a Struts Application
Configuring JDBC DataSources in Struts
DispatchAction in Struts
Using JavaScript to submit a form in Struts
Using Checkbox & Radio Tags, html:select, html:options in Struts Forms
What is Struts? Which Version of Struts to use?
Editing web.xml in a Struts Application
ForwardAction in Struts
MVC Architecture (Model 2 Architecture)
Most Emailed Articles (in last 30 days)
Struts 1 vs Struts 2
What is Struts? Which Version of Struts to use?
Tutorial on Struts Configuration File – struts-config.xml in Struts
History of Struts
What is a Model View Controller (MVC) Model?
WebWork 2 is now Apache Struts 2
Writing the first Struts application
Creating the first application using Struts 2
Is Struts the most popular web application framework for Java?
Downloading and installing Struts
Editing web.xml in a Struts Application
Editing struts-config.xml in a Struts Application
Handling multiple buttons in HTML Form in Struts
DispatchAction in Struts
Using Checkbox & Radio Tags, html:select, html:options in Struts Forms