xiaohewoai 发表于 2013-2-6 09:26:46

The path of an ForwardConfig cannot be null

The path of an ForwardConfig cannot be null
报这个错误  就是因为验证框架
<action-mappings>
  <action validate="true" input="login.jsp" path="/login" type="com.xh.web.action.LoginAction"
   name="userForm">
   <forward name="success" path="success.jsp" />
   <forward name="erroe" path="error.jsp" />
  </action>
 </action-mappings>
因为没有配置input  所以加上就 OK了 !。
页: [1]
查看完整版本: The path of an ForwardConfig cannot be null