What is the differance between struts 1.1 and 1.2 except execute and perform?

Questions by shital_patil   answers by shital_patil

Showing Answers 1 - 3 of 3 Answers

prabht Bisht

  • Jul 24th, 2006
 

in servlet 1.1 there is actionPerformed() method whereas in struts 1.2 there is execute() method

  Was this answer useful?  Yes

M.V.GURU BRAHMAM

  • Oct 5th, 2006
 

Differences between Struts 1.1 and 1.2  :-

1) Adviced for replacement of ActionErrors with ActionMessages

2) org.apache.struts.Action statics: Use org.apache.struts.Global statics instead

3) Many utility methods previously found in org.apache.struts.utils.RequestUtils have been moved to org.apache.struts.taglibs.TagUtils or org.apache.struts.utils.ModuleUtils.

4) Introduction of MappingDispatchAction : A new standard Action that dispatches to a method named by the ActionMapping parameter.

5) Introduction of DigestingPlugIn - A new standard PlugIn that helps you create your own object graph in application scope. This is handy way to create business objects for Actions to call.

6) Addition of Action attributes - An Action attribute has been added to the html img tag, to match what's available on the html link tag now.

7) Additon of Module attribute - A new "module" attribute is available on the forward element as well as several of the core tags. This attribute allows you to specify another module by name (or "prefix") to create direct links between modules. The new module attribute is preferered to the contextRelative attribute and can often be used in lieu of a "SwitchAction".

  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