Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: correct link and remove dead link

...

Apache Struts 2

...

Struts 2 is a web-based MVC framework that emphasizes simplicity and interoperability. The framework is designed so that you can use as many or as few of its features as you like.

Milehigh View of Struts 2

In a conventional web application, requests are often routed to a server page. The server page is responsible for all the processing required by the request.

In a Stuts 2 application, the request first goes to a dispatcher component that selects an action. The action can include an Action class, several Result classes, and even exception handling.

The Action classes processes the logic, and selects a Result class. The Result class can either render the response directly or (more often) transfer control to a server page or template page.

To make it easier to access dynamic data obtained by an Action, the framework includes a library of custom tags. The tags interact with the framework's validation and internationalization features, so input is correct and output is localized. The tag library can be used with JavaServer Pages or FreeMarker templates.

Warning
titleWork in progress!

Struts 2 is at a pre-release, pre-Alpha stage. If you are just getting started with Struts2/WebWork2, we recommend WebWork 2.2 as an entry point. WW2 is stable and production ready. When Struts 2 is released, migration paths for WebWork 2 and Struts 1 developers will be available.

See the Struts 2 release plan for details and status.

Getting Startedc

The online documentation is grouped into three areas.

is an elegant, extensible framework for building enterprise-ready Java web applications. Distributions of Struts 2 are available as a free download under the Apache License.

The contents of the Struts 2 documentation wiki (what you're reading now) are distributed with each release, but maintained via the on-line wiki.

Tip

Have a suggestion, correction, or improvement? Log in and leave a comment on the appropriate page or file a ticket against the Struts 2 documentation. We're always looking for help!

Note

We've started planning the next version of Struts aka Struts 3 (or 2.5) which will break backward compatibility, if you want to join please add your two cents here.

Getting Started

The documentation is grouped into four areas.

Overview

Our overview is your ten minute tour of Struts 2: Who, What, When, Where, and Why.

Tutorials

Our tutorials are designed to help you get started with the framework soon as possibleASAP. We offer an all-purpose "soup to nutsBootstrap" tutorial as well as specialty tutorials on portlets and database access.

Guides

Our in-depth technical guides focus on specific areas components of the framework, such as Views, Third-party Extensions, and the Core framework.

Overview

...

the Core framework, Struts Tags, and optional Extensions, as well as migrating from Struts 1 or WebWork 2.

FAQs and Cookbook

Our FAQs and Cookbook examples provide a wide range of rapid-fire "HOWTOs" in question-and-answer format.

Security Bulletins

Our security bulletins explain any security issues and their solutions

(star) Other Resources

Books, articles, and presentations about Struts 2.

...

Excerpt Include

...

Nutshell
Nutshell

...

nopaneltrue

Guides

...

Help with WebWork2

...

Community Wiki

The Struts 2 Community Wiki is an additional resource. It is not distributed with Struts 2, and contributions to the community wiki do not require a CLA.

Next: Tutorials