What is Model 1 and Model 2?
Answers were Sorted based on User's Feedback
Answer / dsr
model 1 is a mvc1 pattern, it has no controler. Model 2 is
a mvc2 patern, it has action controler. In mvc1 the
request goes to jsp page and response also goes to jsp
page, this is jsp to jsp relation. In mvc2 there is one
controler available, the controler name is action
controler. The re quest goes to controler and searching
the related classes in structs-config.xml file and then
related the classes files will be executed and response
goes to view(jsp or html) page.
| Is This Answer Correct ? | 19 Yes | 2 No |
Answer / prasanna sahu
model 1 is page-centric pattern, here the control flows from
1 jsp page to another.
model 2 has segregation of model, view and controller.All
request has to be first landed in the controller, the
controller comes in the center stage, it is only who decides
where the control should flow.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / sweety
model 1 is nothing but the domain information model
model 2 is nothing but the domain application model
| Is This Answer Correct ? | 2 Yes | 1 No |
In struts how to use regurlar formbeans using validation framework explain?
What is discontinuous strut?
what is the difference between *.do & /do.*/? So what is the diffenence btn extension mapping & path mapping.What is those difference in work effect?
What helpers in the form of jsp pages are provided in struts framework?
What is actioncontext?
What do struts do?
How do struts work?
What is actioninvocation?
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.
What is struts and why it is used?
When wil use singleton class in Struts
can we change the order of parameters in execute()?