You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Pune Java Puzzles
Explain Model, View and Controller Pattern. Do not use Struts any
where when you explain this, we want a very independent answer.
Pratham
unread,
Feb 1, 2008, 5:57:43 AM2/1/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Pune Java Puzzles
As far as MVC2 is concerned
The request first goes to the main controller (Normally a Servlet but
can also be JSP). The controller decides depending on business logic
as to which models need to be invoked and redirects/forwards the
request to a particular view.
View is only used for presentation and display. It does contain any
buisness logic and access the invoked model fet its data.
Model is a Java Bean with appropriate getter and setter methods.
Ideally it is only used as a value holder.