struts 2006 - people.apache.orgpeople.apache.org/.../slides/tu20/struts.pdf · the story so far...

29
Struts University Series Struts 2006 An Embarrassment of Riches

Upload: others

Post on 04-Aug-2020

6 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts University Series

Struts 2006An Embarrassment of Riches

Page 2: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

AbstractApache Struts is a hotbed of activity.

Struts Classic 1.3, Struts Shale, Struts OverDrive, Struts Ti.

Why so many frameworks? How are they different? Why are they all called Struts? Which

is the best choice for my next project? In this session, we step back and look at Struts

through a wide-angle lens.

Page 3: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

The Tao of Struts"A newborn is soft and tender,

A crone, hard and stiff. Plants and animals, in life, are supple and succulent;

In death, withered and dry. So softness and tenderness are attributes of life,

And hardness and stiffness, attributes of death." - Tao Te Ching; 76 Flexibility

"The goal of the Apache Struts project is to encourage application architectures

based on the "Model 2" approach, a variation of the classic

Model-View-Controller (MVC) design paradigm.Under Model 2,

a servlet (or equivalent) manages business logic execution, and presentation logic resides mainly in server pages."

- Struts Home Page

Page 4: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

The Story So Far

Struts 0.5 – May 2000 - Prototype releaseStruts 1.0 – Jun 2001 - Initial releaseStruts 1.1 – Jun 2003 - Commons releaseStruts 1.2 – Dec 2004 - Wildcard releaseStruts 1.3 – xxx 2006 - Subproject release

Page 5: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

The Upcoming 1.3 ReleaseDivided project into subprojects Apps, Core, EL, Extras, Site, Taglibs, Tiles Faces Scripting (new) Flow (new) Shale (new)

Subprojects are the "unit of release"Seven subprojects from 1.2 are bundled as "Struts Classic" Complete Maven build

Page 6: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Core 1.3

Composable Request ProcessorArbitrary configuration propertiesCommand and Catalog elements"Extends" attribute"isCommitted" Exception HandlingPostback ActionsWildcard ActionConfig properties

Page 7: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Request Processor for 1.2public void process(HttpServletRequest request, HttpServletResponse response)

throws IOException, ServletException {

processLocale(request, response);if (!processRoles(request, response, mapping)) {

return;}/// ...ActionForward forward =

processActionPerform(request, response, action, form, mapping);

processForwardConfig(request, response, forward);}

Page 8: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Composable Request Processor for 1.3

<chain name="process-action"> <command className= "...SelectLocale"/> <command className= "...AuthorizeAction"/><!-- ... --> <command className= "...CreateAction"/> <command className= "...ExecuteAction"/></chain>

Page 9: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Arbitrary Configuration Attributes<action path="/EditSubscription" extends="Editor"> <set-property key="foo" value="bar" /></action>

public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { string foo = getProperty("foo"); // ...

Page 10: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Catalog and Command elements

catalog - Name of commons-chain catalog for command. command - Name of commons-chain command which should be looked up and executed as part of servicing this request.Available for both the Controller and any Action Mapping

<controller inputForward="true" catalog="Foo" command="FooBar" />

Page 11: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

"extends" attribute<struts-config> <form-beans> <form-bean name="registrationForm" type="org.apache.struts.action.DynaValidatorForm"> <form-property name="firstName" type="java.lang.String" /> <form-property name="lastName" type="java.lang.String" /> </form-bean> <form-bean name="managerRegistrationForm" type="org.apache.struts.action.DynaValidatorForm" extends="registrationForm"> <form-property name="department" type="java.lang.String" /> </form-bean> </form-beans> ... </struts-config>

Page 12: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

"isCommitted" Exception Handling<exception key="GlobalExceptionHandler.default" type="java.lang.Exception" path="/ErrorPage.jsp"> <set-property key="INCLUDE_PATH" value="/error.jsp" /></exception>

<exception key="GlobalExceptionHandler.default" type="java.lang.Exception" path="/ErrorPage.jsp"> <set-property key="SILENT_IF_COMMITTED" value="true" /></exception>

Page 13: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

PostBack ActionsThe action attribute of the Form taglib is now optional.If omitted, the original URI of the original request is used.

<html:form onsubmit="return validateLogonForm(this);">

Page 14: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Wildcard ActionConfig properties

Wildcards (introduced in 1.2) can now be used in the properties of an ActionConfig.This makes it easier to pass multiple request-time values to the Action without complicating the "parameter" attribute.

<action path="/Save*" name="Save{1}" extends="BaseSave"> <set-properties key="Save" value="{1}"/></action>

Page 15: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Classic 1.x Roadmap

Struts Core 1.3 - Yet to come ActionCommand

void Execute(ActionContext context) ActionContext

A Commons Chain Context that implements the Action class logical API (same signatures).

ViewContext A Commons Chain Context that implements the

combined VelocityStruts logical API (same signatures).

Page 16: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Classic 1.x Roadmap

Struts Core 1.4 thru 1.5 Consider

Direct support for Portlets via an alternate catalog. A consolidated DTD for Config, Tiles, Validator. Refactoring with Spring.

Consider A "smart" action type: executes Action class or

ActionCommand interface, as given. A "populate" method on ActionForm. A "FormContext" mechanism.

Page 17: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

New Project Organization

Struts Classic Apps - Example applications Core - Controller and Validator EL - The JSTL EL extended JSP taglibs Extras - Optional Actions and Plugins Site - The top-level Struts website Taglibs - The original Struts JSP taglibs Tiles - The Tiles templating framework

Page 18: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

New Project Organization

Building on Struts Classic Scripting - Scripted Actions using BSF Flow - Continuation-based process flow Faces - Utilize Struts Actions via JSF

Page 19: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

New Project Organization

New Directions, New Subprojects Shale - New framework built on JSF Tiles - A standalone Tiles release with no

Struts dependenciesNew Directions, New Whiteboards OverDrive - Chain-based business

framework (C#, for now) Ti - Action-based MVC2 framework focusing

on simplicity and development speed

Page 20: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Scripting

Implement Actions with JavaScript, BeanShell, Groovy, Jython, etc.

<action path="/logoff" type="org.apache.struts.bsf.ScriptAction" parameter="/WEB-INF/scripts/Logoff.bsh"> <forward name="success" path="/index.jsp"/></action>

Page 21: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts FlowIntroduces server-side, Continuations-based JavaScript flowsfunction login() { while (struts.sessionScope["curUser"] == null) {

forwardAndWait("loginForm", {"error" : error}); user = struts.param["user"]; passwd = struts.param["passwd"]; if (userManager.login(user, passwd)) { struts.sessionScope["curUser"] = user; } else error = "Invalid login, please try again";

}}

Page 22: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Shale

Web framework based on JSFCreated by Craig McClanahanLike Struts Core, provides a "Front Controller" layerShares zero code with Struts ClassicShale is a first-class citizen of Apache Struts, like Struts CoreNot Struts 2.0

Page 23: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Shale FeaturesView Controller -- Associates a "backing" Java class with each JSF

view in an application, with predefined event handers for events significant to an application developer.

Dialog Manager -- Mechanism to define a "conversation" with a user that requires multiple HTTP requests to implement, modeled as a state diagram.

Application Manager -- Traditional application wide front controller features that should be applied to every request.

Reusable Views -- An innovative sub-framework for supporting the configuration of reusable subtrees of JavaServer Faces components for customizable reuse.

Page 24: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts OverdriveBusiness logic framework based on Commons Chain of ResponsibilityReduces complex business logic processing to a single commandHandles data conversion, formatting, validation, localizationExposed to the presentation layer through a Helper objectBeing developed with C# now, Java later

Page 25: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Overdrive Features

Catalog - Convenient mechanism to retrieve a Context and Command in one call

Processors - Convert, format, and validate input and output

Manifest - Associates processors and messages with fields

Chains - Extensible pre-opt and post-opt chains wrap each request

Helpers - Handle commands and data transfer

Page 26: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Ti

Exploring how to simplify development of MVC web applicationsPrefers convention over configuration Including features like annotations and automatic compilationBuilds on WebWork, Beehive, and SpringStill in the design phase although working code and examples are available

Page 27: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts Dos Equis (2.x)

Apache Struts is a set of products, each with its own label and lifecycleStruts Classic line is evolutionary not revolutionary Deprecate, Release, Remove

Classic will stay 1.x so long as backward compatibility is maintained between releases

Page 28: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Final Thoughts

Apache Struts is both evolving and plunging aheadStruts Classic will being actively developed and supported for a long timeEmerging frameworks, like Shale, OverDrive, and Ti, extend Apache StrutsBottom line: use what works for you.

Page 29: Struts 2006 - people.apache.orgpeople.apache.org/.../slides/TU20/struts.pdf · The Story So Far Struts 0.5 – May 2000 - Prototype release Struts 1.0 – Jun 2001 - Initial release

Struts University Series