Versions Compared

Key

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

...

Tip
titlePackage hierarchy

To clarify #5, while traversing the package hierarchy, Struts 2 will look for a file package.properties:

No Format
com/
    acme/
        package.properties
        actions/
                package.properties
                FooAction.java
                FooAction.properties

If FooAction.properties does not exist, com/acme/action/package.properties will be searched for, if not found com/acme/package.properties, if not found com/package.properties, etc.

...