I have a question about what is the difference between struts and J2EE? Is struts just part of the J2EE technology? If so, should we study J2EE instead of struts so that we can know the whole stuff?
Thanks in advance! Jack
Ernest Friedman-Hill
author and iconoclast
Marshal
Hey, struts implements MVC 2 Architecture (FrameWork). J2EE is the specification released by sun microsystems for business purpose.
Regards, Loga
Vinnie Jenks
Ranch Hand
Joined: Apr 26, 2004
Posts: 207
posted
0
Hmm...I'm just learning the ropes (long-time C#'er) but as I understand it, Struts is a framework for simplifying the development of servlet-based web applications whereas J2EE is a roundup of technologies based in Java (EJB, Servlets, JSP, etc.) for building enterprise-level apps.
I thought you could build struts-based apps w/o being a J2EE-centric developer?
Tony Morris
Ranch Hand
Joined: Sep 24, 2003
Posts: 1608
posted
0
I thought you could build struts-based apps w/o being a J2EE-centric developer?
Struts is tied to J2EE (specifically, the servlet container). This is one of many design limitations of Struts.
Alternatives to Struts that have been written with more thought include WebWork and Spring Framework.