vote up 0 vote down star

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?

flag

64% accept rate

3 Answers

vote up 1 vote down check

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.

link|flag
1  
The best answer so far. – Catfish Oct 29 at 10:13
vote up 2 vote down

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.

basic architecture JEE diagram

link|flag
vote up 1 vote down

Wikipedia:

Apache Struts is an open-source web application framework for developing Java EE web applications. It uses and extends the Java Servlet API to encourage developers to adopt a model-view-controller (MVC) architecture.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.