Struts2.0 and Model-View-Controller (MVC) Design Pattern
Previous | Home | Next |
The Struts 2 framework follows the well-established Model-View-Controller design pattern. The Model represent the data and state,view represent the presentation logic and controller represent the work flow of the struts 2.0 framework.The MVC design pattern identifies three distinct concerns: model, view, and controller.In Struts 2, these are implemented by the action, result, and FilterDispatcher, respectively.
Struts2.0 Action Component- Actions component implemented by the Struts 2 Action interface. But what exactly is the model .The model is the internal state of the application. This state is composed of both the data model and the business logic.MyAction.javapackage org.r4r; public class MyAction { private String name,password; public String execute(){ return "success"; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
Struts2.0 Result Component- The Result component is the presentation component of the MVC pattern. the result returns the page to the web browser. This page is the user interface these are commonly JSP pages, Velocity templates, or some other presentation-layer technology.index.jsp<%@taglib uri="/struts-tags" prefix="s"%> <s:form action="hello"> <s:textfield name="name" label="Name"/> <s:submit value="Submit"/> </s:form>
Struts2.0 FilterDispatcher Component-The role of the controller is played by the Struts 2 FilterDispatcher. The FilterDispatcher class controlling the over all work flow in the struts2.0 framework..web.xml<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <filter> <filter-name>f1</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping> <filter-name>f1</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
Previous | Home | Next |