struts2和DWR的整合问题
工程在调用DWR时会报错:There is no Action mapped for action name XXX。
在网上找的问题是dwr的路径被包含进struts。
解决办法是在struts.xml中加入
<constant name="struts.action.excludePattern" value="/dwr/.*,/dwr/test/*" />
你这样吧:<constant name="struts.action.extension" value="action"></constant>
加这个,这表示所有调用struts的action都要带有后缀.action
这样一来,你调用dwr里的方法就不会转到struts中去了。