Struts (MVC) and EJB

HiI want to use the Struts framework to implement an MVC pattern. For the model I would like to use EJB's.Is there any problem with my approach? Should I rather use another framework?
[213 byte] By [jaco@cyberseal.co.za] at [2007-9-26 1:48:37]
# 1
I'm not really familar with struts, but yes the Model of MVC would be EJB's. (JSP the views, and a Servlet the controller)
MartinS. at 2007-6-29 2:49:07 > top of Java-index,Other Topics,Patterns & OO Design...
# 2

Hi,

> Hi

>

> I want to use the Struts framework to implement an MVC

> pattern. For the model I would like to use EJB's.

>

> Is there any problem with my approach? Should I rather

> use another framework?

Struts applies many of the patterns in the J2EE Pattern catalog as outlined in our book Core J2EE Patterns. Have a look at the business delegate, value object, and service locator patterns in order to connect presentation tier objects (whether you use Struts or not) with business tier objects.

Hope this helps,

Dan

Dan-Malks at 2007-6-29 2:49:07 > top of Java-index,Other Topics,Patterns & OO Design...