Resolution that uses the Servlet API to forward the user to another path within the same web application using a server side forward.
There is one case when this resolution will issue an include instead of a forward. The Servlet specification is ambiguous about what should happen when a forward is issued inside of an include. The behaviour varies widely by container, from outputting only the content of the forward, to only the content prior to the include! To make this behaviour more consistent the ForwardResolution will automatically determine if it is executing inside of an include, and if that is the case it will include the appropriate URL instead of forwarding to it. This behaviour can be turned off be calling {@literal autoInclude(false)}.
@see RedirectResolution @author Tim Fennell
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|