what's diff between struts 1.1 & 1.2
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What super () does in java?
What is a local block?
Difference between abstract and concrete class ?
what is default constructor and parameterised constructor with example?
what is an virtual function
How do you stop a thread in java?
How many bytes is a string in java?
Why Static variable required in java?For ex,class A { static int a; int b; } Why static is required?
What types of inheritance does Java support?
What are multiple inheritances? Is it supported by java?
What is the difference between an inner class and a sub-class?
What are virtual methods?