Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Variables

Description

attr

...

scans the request, session, and application attributes, in that order

...

request

...

request attributes

...

session

...

session attributes

...

application

...

application attributes

...

parameters

...

request params

...

Defining Java Constant

Variables

Description

ActionContext.PARAMETERS asd

com.opensymphony.xwork2.ActionContext.parameters

Same as 'parameters' above

ActionContext.SESSION asd

com.opensymphony.xwork2.ActionContext.session

Same as 'session' above

ActionContext.APPLICATION asd

com.opensymphony.xwork2.ActionContext.application

Same as 'application' above

ActionContext.LOCALE asd

com.opensymphony.xwork2.ActionContext.locale

From locale defined in webworkstruts.properties else from the request object

ActionContext StrutsStatics.DEVHTTP_MODE

asd

true or false if in development mode or otherwise whereby resource bundle webwork.properties, xwork.xml, converters, validators will be refreshed when changes

REQUEST

com.opensymphony.xwork2.dispatcher.HttpServletRequest

ActionContext.HTTP_REQUEST

asd

Same as 'request' above

ActionContext StrutsStatics.HTTP_RESPONSE asd

com.opensymphony.xwork2.dispatcher.HttpServletResponse

Same as 'response' above

ActionContext StrutsStatics.SERVLET_CONTEXT asd

com.opensymphony.xwork2.dispatcher.ServletContext

Servlet's spec's ServletContext object

ActionContext.COMPONENT_MANAGER

asd

Webwork's IOC component manager

...