what's diff between struts 1.1 & 1.2

Answers were Sorted based on User's Feedback



what's diff between struts 1.1 & 1.2..

Answer / imtiyaz

The three differences I see as most significant are:

* Deprecation of ActionError class. (Use ActionMessage
instead)
* Ability to use wildcard characters in action mappings
* Improvments in the validation framework, including the
"validwhen" rule

Is This Answer Correct ?    26 Yes 6 No

what's diff between struts 1.1 & 1.2..

Answer / prabhakar

Struts 1.2 features:
====================

1) In Struts 1.2,ActionErrors were deprecated, needs to use
ActionMessages instead of ActionErrors.

2) Introducing to MappingDispatchAction (A new standard
action that dispatches to a method name by having
different actions in the action Mappings for each method)

3) Attribute 'module' has been introduced in the forward tag
of action.Which will be used to link to another module when
forward happens.Can be used when we work with SwithAction.

4) Validation framework was fine tuned , including additon
of new validation rule 'validWhen'


- Prabhakar

Is This Answer Correct ?    21 Yes 2 No

what's diff between struts 1.1 & 1.2..

Answer / vasu

Hi,new concepts in struts1.1 are1)changes to the web.xml
file as well as Struts-config.xml2)performExcecute() is
replaced by execute() method3)plug-ins
added4)RequestProcessor class..etc

Is This Answer Correct ?    13 Yes 20 No

Post New Answer

More Core Java Interview Questions

What restrictions are placed on method overloading in java programming?

0 Answers  


What is a method in java?

0 Answers  


What is means by DLL file means ? What is the use of DLL file? What are the contents of DLL file?

4 Answers  


What is a blocking method in Java?

0 Answers  


Can an interface be final?

0 Answers  






public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }

7 Answers   iGate,


Can we cast any other type to boolean type with type casting?

0 Answers  


What are the differences between getting and load method?

0 Answers  


How to declare objects of a class ?

0 Answers   Akamai Technologies,


Why parameters should be passed by reference?

0 Answers  


I want to know the host name and provider name for tcs web mail

5 Answers   RSG, TCS,


What is the difference between Grid and Gridbaglayout?

0 Answers  


Categories