Apache Struts Web Application Framework
FAQs
Kickstart
Newbie
How to Help
Howto Guides
Action Forms
Building Apps
Database
Indexed Properties
SSL
IDE Guides
Eclipse
Netbeans
Quick Links
Welcome
News and Status
Resources
User and Developer Guides
FAQs and HowTos *
How does Struts work?

Contributors:

  • Anthony Kay
How does Struts work?

Java Servlets are designed to handle requests made by Web browsers. Java ServerPages are designed to create dynamic Web pages that can turn billboard sites into live applications. Struts uses a special Servlet as a switchboard to route requests from Web browsers to the appropriate ServerPage. This makes Web applications much easier to design, create, and maintain.

Here is some more detail on the mechanisms and dependencies of Struts:

  • The web application that you develop has a deployment descriptor (WEB-INF/web.xml) which you must write. This file describes the configuration of your web application, including welcome pages (the file that is shown in a directory when none is specified by the request), mappings to servlets (path or extension name), and parameters to those servlets.
    In this file, you configure the Struts ActionServlet as the servlet that will handle all requests for a given mapping (usually the extension .do). This is the "switchboard" mentioned above.
    In this same file, you configure the ActionServlet to use one or more configuration files for Struts itself.
    For this text, assume we are installing the web application on the server at /myapp, and are using the simplest possible configuration from there.
    If you need more details on deployment descriptors, read the Servlet Specification available from Sun Microsystem's Java site.
  • In the Struts configuration file(s), you associate paths with the controller components of your application, known as Action classes (i.e. "login" ==> LoginAction class). This tells the Struts ActionServlet that when the incoming request is http://myhost/myapp/login.do it should invoke your controller component LoginAction.
    Note the extension .do in this URL. The extension causes your container (i.e. Tomcat) to call the ActionServlet, which sees the word "login" as the thing you want to do. The configuration is referenced, and your LoginAction is executed.
  • For each Action, you also configure Struts with the names of the resulting page(s) that can be shown as a result of that action. There can be more than one view as the result of an action (often, there are at least two: one for success, and one for failure).
    Your Action (the controller component you write) is based on these logical result mapping names. It reports back to the ActionServlet using words like "success", "failure", "ready", "ok", "UserIsIncompetent", etc. The Struts system (through the configuration that you wrote) knows how to forward to the proper specific page. This has the added advantage of reconfiguration of the view layer by simply editing the Struts XML configuration file.
    At this point Struts knows how to delegate to your controller components, and what to show as a result of your controller processing. The "model" part of the application is completely up to you, and is called from within your controller components.
  • You may also associate a Java Bean with an action (or set of actions) in the Struts configuration file. The Java Bean is used as a repository for form or display data that can be communicated between the view and controller layer.
    These Beans are automatically made visible to your controller components (like LoginAction) and any view page that is associated with that controller.
    These Beans can also be validated with the help of the Struts system to help insure that the user is putting good data in the form. They can be carried along with a session, allowing forms to span multiple pages of the view, and Actions in the controller.
    Note: You must be using some sort of server-side technology (JSP, Velocity, XSLT) for the view layer (going to the client) to see this data (plain HTML won't work). Struts works on the server side, so the client's view has to be composed there.
    The client feeds the data back through normal form submission (POST/GET) methods, and the Struts system updates that data in the Bean before calling your controller components.
  • Within your web application will be pages that represent the view your users will see. These can be JSP pages, Velocity Templates, XSLT pages, and so forth. A set of JSP tags is bunded with the Struts distribution so that you can get started right away, but any standard presentation technology can be used with Struts.
    Even plain HTML files can be used within your Struts application, although they will not take full advantage of all of the dynamic features.
    Following the example of the Struts JSP taglibs, several other packages are available to make the framework easy to use with your favorite presentation technology. For Velocity templates, there are the Velocity ViewTools for Struts. If you want to use XSLT in you application, you can choose between stxx and StrutsCX.
    These packages make the standard Struts framework elements look and feel like a seamless part of the original presentation technology. Struts also makes it easy to mix and match. If need be, you can use JSP, Velocity templates, and XSLT all in the same application!
    Since Struts relies on standard Servlet technologies, you should be able to use any Java presentation technology with Struts.
  • While the focus of the Struts framework is on the controller, the presentation layer is a significant part of any application. The Struts JSP taglibs include a number of generic and Struts-specific tags to help you use dynamic data in your view.
    The custom JSP tags account for a good deal of the Struts code base. It is educational to note that as of version 1.1b3 the Java code for the core of Struts was about 28,000 lines, and the Java code for the tag libraries (including tiles) was about 41,000 lines.
    These tags help you glue your view layer to the controller layer without having to embed a lot of Java in the JSP. This gives the page an XML look, and can be easier for web designers to deal with than a plain JSP. It also helps minimize dependencies between the controller and view.
    The custom tags are used to create forms (and invisibly interact with the Bean mentioned previously), logically forward to other pages, and invoke other actions of the web application.
    There are also tags that help you with internationalization, error messages, etc.
    All of these abilities depend in some way on the configuration files you supplied to Struts.

It is important for you to remember that the mechanism described here is only in effect when the ActionServlet is handling the request.

Since this only happens when a request is submitted that causes your container (i.e. Tomcat, WebSphere, etc.) to call ActionServlet, you must be sure that any page that relies on Struts is done through a request that will map to the ActionServlet (i.e. has a .do extension).


Copyright (c) 2000-2003, Apache Software Foundation