Hello to all,

In Struts-1.1 it is possible to bind Actions to static URL path,
but is it possible to bind Actions to the set of the paths,
described by Java regular expression?
For example:
<action-mappings>
    <action     path="/users/.*"
                    type="com.mysite.UserPageAction"
                    scope="session"
                    validate="false">
                </action>
</action-mappings>

I mean that in this case the requests for "/users/John/",
"/users/Mary/" and etc. will be handled by "com.mysite.UserPageAction".

Thanks for attention,
      Sergey Proskurnya.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to