-
When we speak of a view technology are we meaning the framework that we use to create the web pages like JSP or Facelets? Practically in the MVC pattern is it a PDL that render the VIEW?
-
In some Java EE books the MODEL is related to backing beans but, generally, in design patterns books the model is related to the data. So what’s a MODEL?
When we speak of a view technology are we meaning the framework that we
Share
Both can be considered as view. Anything that your app puts to user is a view. For example if I show some reports to user in the form of PDF then it’s a view. Technically it would be JasperReports View.
Model in broader term is your classes that simulates Business Model in your app. And I would say it is backing beans.
See Also