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 |
Explain struts.devmode?
When wil use singleton class in Struts
What does execandwait interceptor?
What are the major differences between html tags and strut specific html tags?
Hi frnds Ima facing problm with tomcat configuration.kindly can any one tell to me what is the mistake iam doing.i already configured tomcat as fallowing http://www.ibm.com/developerworks/opensource/library/os-eclipse-tomcat/ even though iam getting the PortNO .and changed with different no of Ports but no working kindly can any one tell me what is the mistake iam doing........?
What do you mean by actionmapping?
How to upload struts file?
What is the purpose of form-beans tag in struct-config.xml?
I facing problems while explaining project details in the interview...... can any tell complete project architecture that followed in companies
why we are not implement business logic in struts action?
What is java struts?
why do we typecast ActionForm into out plain java bean class in Action class?