In struts 2, 开发者_JAVA技巧if we have action declaration as :
<package name="pdfReports" namespace="/reportPdfs" extends="struts-default">
<action name="*" .......
What should be the action url corresponding to this? This url:
/reportPdfsreports/12-008975/someActionName.action
is giving error:
There is no Action mapped for action name someActionName
The URL would be /reportPdfs/someActionName.action
精彩评论