1.

What is the architecture model of Struts?

Answer»

Strut is a combination of JSP, Java Servlets, MESSAGES and CUSTOM tags that together form an application development framework for developing enterprise-level applications. It is based on MVC (Model-View-Controller) architecture.

  • Model: This component defines the INTERNAL system state. It can either be a Java Beans cluster or a single bean depending on the application architecture.
  • View: Struts MAKE use of JSP technology for designing views of enterprise-level applications.
  • Controller: It is a servlet and is used for managing user actions that process requests and RESPOND to them.


Discussion

No Comment Found