Does anyone know how I can forward to a .jsp file based on a dynamic
attribute (request parameter)?

I want to write a Struts 2 action that will forward the user to a .jsp
dynamically.  The flow works like so:

1. A request is made for 'resourceLocator.action?resource=common'.
2. The resourceLocator.action class takes the 'resource' request parameter
and forwards the user to 'common.jsp'.

I'm not able to figure out how this is done in Struts 2, since all actions
only return a String result which must be mapped.  I'm trying to avoid
having to map all my resources in this action.

Thanks!

Reply via email to