Annotation Interface ResultPath
This annotation allows the path to the results be to changed on a class by class basis. This will favor the property name setting and then the value.
This is used when locating results for an action. In most cases a result is a JSP or some type of template (Velocity for example). In order to figure out which results are associated with an action, this class can be used to set the base directory that the Convention plugin looks at when trying to figure out the correct results. For example, if there is an action:
com.example.foo.DoSomething
The Convention plugin might find that the namespace is foo and the action
name is do-something and will need to find the results. Using this annotation
you can set the base path of the results to something like
/WEB-INF/jsps
so that the Convention plugin will look in the
web application for files of this pattern:
/WEB-INF/jsps/foo/do-something-<resultCode>.ext
-
Optional Element Summary
-
Element Details
-
value
String value- Returns:
- The result path to use for this action, instead of the default.
- Default:
- ""
-
property
String property- Returns:
- The name of the property from the struts.properties file that contains the result path for the action that contains this annotation. This property must be set and the struts.properties file must exist in the root of the classpath.
- Default:
- ""
-