what is the difference between model1 and model2
architecture in struts?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Name some of the features of struts2?
what is a RequestProcessor?
I will explain the scenario now i have a form1 having some fields and i made it extends DynaActionForm. in struts config how can i specify another form form2 which has to extend the form1 please specify is it better to use actionform or dyna action form in applations. is dyna action form is comfortable in declaring form variables of type 'ArrayList<somegenerics>' extend the
How do you know what to give for the "path " under in struts-config.xml ?
How an actionform bean is created?
What is a custom tag?
what is the purpose of action servlet and action?
What is the purpose of @results?
What is struts actionmapping?
What are the features of struts?
What do you mean by a custom tag?
What is the use of namespace in action mapping in Struts2?