How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action
maps to MyClass.MyMethod(Arg)? I tried this:
<action name="MyAction_*" method="MyMethod({1})" class="example.MyClass">
<result>page.jsp</result>
</action>
but I get java.lang.NoSuchMethodException at runtime