MVC - Model doubt.
posted 19 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
In MVC architecture "M" represents the model, which is nothing but the java class.
Can anything else act as a model? Can Java bean be a model?
Can anything else act as a model? Can Java bean be a model?
posted 19 years ago
Sure, why not? There is nothing magical about a Java bean, its just a class that uses the bean conventions. You are free to code the "model" representation of data any way that fits the rest of your application.
Personally I start with thinking about how the data is saved and restored.
Bill
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Can Java bean be a model?
Sure, why not? There is nothing magical about a Java bean, its just a class that uses the bean conventions. You are free to code the "model" representation of data any way that fits the rest of your application.
Personally I start with thinking about how the data is saved and restored.
Bill
posted 19 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi,
MVC denotes Model ( can be Java beans or EJB )
V denotes View ( can be JSP xml and more)
C denotes ontroller (Should be a servlet or struts-config.xml if you are using struts framework)
Model is nothing but business logics..
Regards,
Vijay.B
MVC denotes Model ( can be Java beans or EJB )
V denotes View ( can be JSP xml and more)
C denotes ontroller (Should be a servlet or struts-config.xml if you are using struts framework)
Model is nothing but business logics..
Regards,
Vijay.B
posted 19 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Your model is your business logic. You want to keep it separate from View generation logic and Controller Logic. But the actual Java artifact that implements the model is up to you. I think you should do it in a JavaBean. Some have done it in Servlets. Others have done everything in a JSP.
And really, don't we all pine for that one, monolithic object, that does everything, sits in the root of C:\, and has one bit method called go() that does everything?
[ August 27, 2006: Message edited by: Bear Bibeault ]
And really, don't we all pine for that one, monolithic object, that does everything, sits in the root of C:\, and has one bit method called go() that does everything?
[ August 27, 2006: Message edited by: Bear Bibeault ]
| It is no measure of health to be well adjusted to a profoundly sick society. -Krishnamurti Tiny ad: The new gardening playing cards kickstarter is now live! https://www.kickstarter.com/projects/paulwheaton/garden-cards |








