I'm currently learning Java EE, or more specifically, Servlets and .jsp. In my programming, I already employ the Model-View-Controller model to write my code. And as far as I've googled, Apache Struts is just a server like Tomcat. So, what exactly is Apache Struts, in relation to Java, Java EE, and Servlet classes in Java EE?
|
|
Struts is NOT another server. Its an application framework. It is built on top of JSP and Servlet architecture. So it is an abstraction of the servlet environment. Using a framework like struts has some advantages such as: many common features of applications are pre built so you don't have to do them yourself. Features such as validation. It also forces you to work according to some best practicve philosophy, in this case MVC. Under the covers struts implement a few servlets to do the job. You the developer do not have to write servlets. You can focus on business logic instead. |
||||
|
|
|
Struts is a library for making web applications; it is not by itself a server. It requires a JSP/Servlet container in order to work (such as Tomcat). See the Struts technology primer. JEE is a specification that includes a number of technologies. Tomcat is not a JEE server because it does not incorporate all these technologies, but has been used as part of a JEE server, providing the web tier.
|
||
|
|
|
|
|
||
|
|

