What is the difference between strsuts 1.0 and struts 1.1 ?

Questions by sadashivarao   answers by sadashivarao

Showing Answers 1 - 7 of 7 Answers

rajavardhan reddy

  • May 25th, 2006
 

in structs 1.0 execute() method is their.

  Was this answer useful?  Yes

R.venkateswarlu

  • May 26th, 2006
 

Hi

    struts1.0         

 

  Was this answer useful?  Yes

shyam sundar

  • Jun 12th, 2006
 

in struts 1.0 validation frame work is not there but in struts 1.1 validation frame work is there and tiles is also not in struts1.0

  Was this answer useful?  Yes

Sandeep

  • Jun 17th, 2006
 

In Struts1.0 Dayna action is not there .

  Was this answer useful?  Yes

Muralisankar

  • Jun 18th, 2006
 

The new features added to Struts 1.1 are

 
1. RequestProcessor class
2. Method perform() replaced by execute() in Struts base Action Class
3. Changes to web.xml and struts-config.xml
4.Declarative exception handling
5.Dynamic ActionForms
6.Plug-ins
7.Multiple Application Modules
8.Nested Tags
9.The Struts Validator
10.Change to the ORO package
11.Change to Commons logging
12.Removal of Admin actions
13. Deprecation of the GenericDataSource.

  Was this answer useful?  Yes

suri

  • Jun 20th, 2006
 

  • Bigger Learning Curve.
    To use MVC with the standard RequestDispatcher, you need to be comfortable with the standard JSP and servlet APIs. To use MVC with Struts, you have to be comfortable with the standard JSP and servlet APIs and a large and elaborate framework that is almost equal in size to the core system. This drawback is especially significant with smaller projects, near-term deadlines, and less experienced developers; you could spend as much time learning Struts as building your actual system.
  • Worse Documentation.
    Compared to the standard servlet and JSP APIs, Struts has fewer online resources, and many first-time users find the online Apache documentation confusing and poorly organized. There are also fewer books on Apache Struts than on standard servlets and JSP.
  • Less Transparent.
    With Struts applications, there is a lot more going on behind the scenes than with normal Java-based Web applications. As a result, Struts applications are:
    • Harder to understand
    • Harder to benchmark and optimize
  • Rigid Approach.
    The flip side of the benefit that Struts encourages a consistent approach to MVC is that Struts makes it difficult (but by no means impossible) to use other approaches.
  •   Was this answer useful?  Yes

    rambabup19

    • Sep 17th, 2006
     

    in struts 1.0 we have to override perform method from 1.1 onwords execute method was introduced.this supports us to throw any exception,i.e,thia provides declarative exception handling.

      Was this answer useful?  Yes

    Give your answer:

    If you think the above answer is not correct, Please select a reason and add your answer below.

     

    Related Answered Questions

     

    Related Open Questions