what is the difference between model1 and model2
architecture in struts?

Answers were Sorted based on User's Feedback



what is the difference between model1 and model2 architecture in struts? ..

Answer / mahalakshmi

in model 1 jsp can handle busnesslogic and view also.
in model 2 it sus only for view purpose and busnesslogic
hanlde by controller

Is This Answer Correct ?    8 Yes 1 No

what is the difference between model1 and model2 architecture in struts? ..

Answer / jaikant

in model 1 ,either Servlets or JSP handles all the
responsibilities for request.like processing the
data,validating the data, handling the business and data
access logic.

model 1 can be use when your application is small.

application can't have multiple interfaces(or views) for
same business logic.

Model 2 breaks your application in three parts
i)Controller: performs request processing,data validation
and works as controller between model and view.so there is
no direct interaction between model and view.

ii)model: it is core of the application.it is house of
business logic and data access code.model defines what
application does.we can subdivide model in 2 sub layer(data
access layer and business logic layer).

iii)view:it is place where presentation code reside.it is
the place for getting input and displaying data that is
generated by model layer.

Is This Answer Correct ?    4 Yes 0 No

what is the difference between model1 and model2 architecture in struts? ..

Answer / abdul hannan

In Model-1, every request is handled by separate controller
class, but in Model-2 every request is handled by a common
controller class like in Struts 'ActionServlet' class.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More Struts Interview Questions

What types of Actions we have in Struts?

3 Answers   TCS,


Hi Friends, am new to struts.I read that " you can store variables in xml file(properties file) and for future enhancements we just call properties file . Now i want to implement this , where can i call properties file to enhance my application. My question is where this properties file will be called.

1 Answers  


What are the applications of struts?

0 Answers  


What are the contents on web.xml in struts application ?

0 Answers  


What is the purpose of @before?

0 Answers  


What are construction struts?

0 Answers  


whats is mean Actionerrors and Actionerror?

5 Answers   Wipro,


Explain about the validation steps which have to be carried during validation of client-side address?

0 Answers  


What is pojo in struts2?

0 Answers  


Does struts include its own unit tests?

0 Answers  


How many types of action clases are there in stuts and their uses?

15 Answers   OHO, TCS, Wipro,


struts comes under which layer of three tire architecture in real time projects plz i need explaination?

10 Answers   Infinite Computer Solutions, TCS,


Categories