Versions Compared

Key

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

...

Note
titleSession Scope & Spring

Spring does not support session scoped components right now. There are plans for integrating this in the Spring 2.0 release. Right now, you will have to use Spring Session Components Workarounds.

...

Normally, in xwork.xml you specify the class for each action. When using the SpringObjectFactory (configured as shown above) , this means that WebWork will ask Spring to create the action and wire up dependencies as specified by the default auto-wire behavior. The SpringObjectFactory will also apply all bean post processors to do things like proxy your action for transactions, security, etc. which Spring can automatically determine without explicit configuration. For most usages, this should be all you need for configuring your actions to have services and dependencies applied.

...