Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • APPLICATION
  • SESSION
  • CONVERSATION
  • FLASH
  • UNSPECIFIED

The scope management functionality is provided by an interceptor which needs to be added to your action's interceptor stack:

Code Block

  <interceptor name="bean-scope" class="com.googlecode.scopeplugin.ScopeInterceptor" />

Example

The following example shows how a session managed bean can be automatically be moved from the session to an action property before the action executes and moved from the action to the session after the action executes.

...