Java.lang.RuntimeException: Invalid action class configuration that references


Java.lang.RuntimeException:
Invalid action class configuration that references an unknown class named [XXXAction]
之所以出现上述异常,在排除其他可能后,那就是input的问题了。这是因为struts2的表单验证机制,一旦你的表单出现问题,验证通不过,struts2就会去你的struts.xml中找你的input结果集指向的页面,如果你没有在结果集中配置input,则会出现上述异常。
<result name="input">/error.jsp</result>

你可能感兴趣的:(java,struts)