Versions Compared

Key

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

Most often, the Action Mappings will be automatically reloaded if the WAR is redeployed. If not, there are two things you can try: Setting the reload property to true and destroying the configuration.

Setting Reload to True

Code Block
titleactionstruts.properties
### Configuration reloading
### This will cause the configuration to reload xwork.xml when it is changed
actionstruts.configuration.xml.reload=true

Destroying the Configuration

Create a utility Action that calls destroyConfiguration.

...