struts2使用!动态方法调用无效,报错

前几天一直在复习stuts2框架的使用,就自己打了一个小程序测试,

不过在开发过程中,出现了一个问题,那就是使用!访问的时候,会报异常:

Struts Problem Report

Struts has detected an unhandled exception:

Messages:
  • There is no Action mapped for namespace [/user] and action name [user!add] associated with context path [/mySSH].

Stacktraces

There is no Action mapped for namespace [/user] and action name [user!add] associated with context path [/mySSH]. - [unknown location]
 

因为是照着教程上的做的,并没有发现问题,在经过了一番查找后,才发现是没有打开Struts2的!调用功能。

需要在struts.xml文件中添加

<constant name="struts.enable.DynamicMethodInvocation" value="true" />

打开功能就可以了。

 
posted @ 2015-06-15 15:16  星斗岚山  阅读(257)  评论(0编辑  收藏  举报