| Author |
mvc2 tier Arch.
|
rex tony
Ranch Hand
Joined: Aug 29, 2007
Posts: 159
|
|
In MVC2 Can i use like this? [ Added code to retain formattng - Dave ] [ January 10, 2008: Message edited by: David O'Meara ]
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
|
Can you explain it in a a little more detail?
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
rex tony
Ranch Hand
Joined: Aug 29, 2007
Posts: 159
|
|
1.For View, we can use JSP,HTML so forth. 2.For Controller, we should use Serlvet class 3.For Model, we can use DB,EJB My Questions are Can we use Java Bean Between 1,2 Between 2,3
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
|
Typically JavaBeans are your model and they will be used by some DAO/Service layer to transport data back to your controller and again on through to your view. They are also used similarly in reverse although the transport from view to controller is typically done via HTTP rather than a JavaBean itself. Once the controller has the request you'd wrap up POST/GET data into a JavaBean. Hope that makes sense.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
|
|
|
P.S. It's MVC, not MVC2.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
rex tony
Ranch Hand
Joined: Aug 29, 2007
Posts: 159
|
|
Hello Bear Bibeault So which one is come under MVC1 ,MVC2,From you a little bit of disorientation
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
|
|
|
There is no MVC1 or MVC2. There is just MVC. You may be thinking of Model 1 vs. Model 2 (Model 2 being the MVC approximation on the web), or perhaps Struts 1 vs. Struts 2.
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
Originally posted by rex tony: Hello Bear Bibeault So which one is come under MVC1 ,MVC2,From you a little bit of disorientation
See: http://faq.javaranch.com/java/Model1Model2MVC
|
 |
 |
|
|
subject: mvc2 tier Arch.
|
|
|