I configured struts to handle url mapping with no extensions this way
<constant name="struts.action.extension" value=",," />
With this action mapping
<action name="*" class="myAction" method="myMethod">
<param name="myId">{1}</param>
<result type="tiles">myTile</result>
</action>
I can handle urls like:
/aaa/bbb/ccc
/aaa/bbb/ddd
/aaa/bbb/eee
But i wish to handle this kind of urls too:
/aaa/bbb/fff.xyz
/aaa/bbb/fff.jkw
/aaa/bbb/fff.anykindofextension
But when i insert a DOT in the action name (mapped by a wildcard) I
get a 404 error.
Any idea?
Thank you
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]