struts2表单验证不适用于jsp和action类

时间:2014-05-10 17:45:49

标签: jsp struts2

使用validate()方法应用验证时,

'没有为操作和结果输入定义结果'消息。如何克服它?

1 个答案:

答案 0 :(得分:2)

确保有result用于" input"在验证失败时写在struts.xml中:

 <result name="input">/YourPage.jsp</result>

如果您没有这个,那么您将收到"No result defined for action xxx.xxx.YourAction and result input"错误。

还要检查HTML字段元素与Action类字段的映射。