What is difference between perform() used in struts1.0 and
execute() used in 1.1 ?

Answers were Sorted based on User's Feedback



What is difference between perform() used in struts1.0 and execute() used in 1.1 ? ..

Answer / srilakshmi

Using perform() u have throw IOException,ServletException.
But where as execute() method throws Generic Exception.
i.e
public ActionForward perform(ActionMapping am,ActionForm
af,HttpServletRequest req,HttpServeltResponse res) throws
ServletException,IOException{...some stuff...}



public ActionForward execute(ActionMapping am,ActionForm
af,HttpServletRequest req,HttpServeltResponse res) throws

Exception{...some stuff...}

So no need to handle all the exceptions caught programatically.

Is This Answer Correct ?    13 Yes 2 No

What is difference between perform() used in struts1.0 and execute() used in 1.1 ? ..

Answer / gurmeet singh

In struts1.1, we use perform method ie is deprecated now.
So after struts 1.1 we use execute method

Is This Answer Correct ?    12 Yes 1 No

What is difference between perform() used in struts1.0 and execute() used in 1.1 ? ..

Answer / swami

perform() used in struts 1.1 but in struts 1.0 using the execute()

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More Struts Interview Questions

How exception handling is provided in struts?

2 Answers   Accenture,


What are the benefits of Struts framework?

0 Answers  


Give the details of xml files used in validator framework?

0 Answers  


Difference between html tags and struts specific html tags

0 Answers  


Where should struts xml be placed?

0 Answers  






How exceptions are handled in struts application?

0 Answers  


explain the struts-configuration file?

3 Answers   TCS, Zoho,


Which design pattern the interceptors in struts2 is based on?

0 Answers  


Why it called struts?

0 Answers  


In which order struts framework searches for a message bundle?

0 Answers  


What is the purpose of struts.xml in struct2?

0 Answers  


what is request processor class ?

10 Answers   Fidelity,


Categories