struts2的验证分为分编程式验证、声明式验证、注解式验证。这里采用的是注解式验证。
1、首先查看API文档,查看struts2注解验证的使用
Home > Guides > Core Developers Guide > Annotations
/**
* 后台验证
* @param requiredStrings String空串错误
* @param requiredFields 空串错误
* @param intRangeFields 数字的范围错误
* @param conversionErrorFields 类型转换错误
*/
@Validations(
requiredStrings={
@RequiredStringValidator(type=ValidatorType.SIMPLE,fieldName="goodsName",message="货物名称不能为空!"),
@RequiredStringValidator(type=ValidatorType.SIMPLE,fieldName="ctnChar",message="箱号字母不能为空!"),
},
requiredFields = {
@RequiredFieldValidator(type=ValidatorType.SIMPLE,fieldName="beginNo",message="开始数字不能为空!"),
@RequiredFieldValidator(type=ValidatorType.SIMPLE,fieldName="endNo",message="结束数字不能为空!"),
@RequiredFieldValidator(type=ValidatorType.SIMPLE,fieldName="goodsCount",message="货物数量不能为空!"),
//@@RequiredFieldValidator(fieldName="container",message="必须选择一个集装箱!"),
} ,
intRangeFields={
@IntRangeFieldValidator(type=ValidatorType.SIMPLE,fieldName="beginNo",min="1",message="开始数字必须大于1!"),
@IntRangeFieldValidator(type=ValidatorType.SIMPLE,fieldName="endNo",min="2",message="结束数字必须大于1!"),
@IntRangeFieldValidator(type=ValidatorType.SIMPLE,fieldName="goodsCount", min="0",message="货物数量必须大于0!"),
},
conversionErrorFields = {
@ConversionErrorFieldValidator(type=ValidatorType.FIELD,fieldName="beginNo",message="开始数字只能填写数字!",shortCircuit=true),
@ConversionErrorFieldValidator(type=ValidatorType.FIELD,fieldName="endNo",message="结束数字只能填写数字!",shortCircuit=true),
@ConversionErrorFieldValidator(type=ValidatorType.FIELD,fieldName="goodsCount",message="货物数量只能填写数字!",shortCircuit=true),
}
)
2、遇到问题No result defined for action gs.web.action.PlanLoadSeqAction and result input
因为默认配置下,验证框架是对所有方法都进行了验证,其实我们可以对不需要验证的方法上写了@SkipValidation注解4、参考资料:Struts2之annotation注解验证
常见的注解:参考资料、Struts2之annotation注解验证